Class

com.ing.baker.recipe.javadsl

Recipe

Related Doc: package javadsl

Permalink

case class Recipe(name: String, interactions: Seq[common.InteractionDescriptor], sieves: Seq[common.InteractionDescriptor], sensoryEvents: Set[Event], defaultFailureStrategy: InteractionFailureStrategy, eventReceivePeriod: Option[FiniteDuration], retentionPeriod: Option[FiniteDuration]) extends common.Recipe with Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, common.Recipe, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Recipe
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Recipe
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Recipe(name: String)

    Permalink
  2. new Recipe(name: String, interactions: Seq[common.InteractionDescriptor], sieves: Seq[common.InteractionDescriptor], sensoryEvents: Set[Event], defaultFailureStrategy: InteractionFailureStrategy, eventReceivePeriod: Option[FiniteDuration], retentionPeriod: Option[FiniteDuration])

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. val defaultFailureStrategy: InteractionFailureStrategy

    Permalink

    The default interaction failure strategy.

    The default interaction failure strategy.

    Definition Classes
    RecipeRecipe
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. val eventReceivePeriod: Option[FiniteDuration]

    Permalink

    The period that processes can receive events for this recipe.

    The period that processes can receive events for this recipe.

    If Duration.Undefined, events will always be accepted.

    Definition Classes
    RecipeRecipe
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  11. def getEvents: List[Event]

    Permalink
  12. def getInteractions: List[common.InteractionDescriptor]

    Permalink
  13. def getSieves: List[common.InteractionDescriptor]

    Permalink
  14. val interactions: Seq[common.InteractionDescriptor]

    Permalink

    The set of interactions.

    The set of interactions.

    Definition Classes
    RecipeRecipe
  15. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  16. val name: String

    Permalink

    The name of the recipe.

    The name of the recipe.

    Definition Classes
    RecipeRecipe
  17. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. val retentionPeriod: Option[FiniteDuration]

    Permalink

    The period that processes are stored.

    The period that processes are stored.

    If Duration.Undefined, process data will be stored indefinitely.

    Definition Classes
    RecipeRecipe
  21. val sensoryEvents: Set[Event]

    Permalink

    The set of events.

    The set of events.

    Definition Classes
    RecipeRecipe
  22. val sieves: Seq[common.InteractionDescriptor]

    Permalink

    The set of sieves.

    The set of sieves.

    Definition Classes
    RecipeRecipe
  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  24. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. def withDefaultFailureStrategy(interactionFailureStrategy: InteractionFailureStrategy): Recipe

    Permalink

    This set the failure strategy as default for this recipe.

    This set the failure strategy as default for this recipe. If a failure strategy is set for the Interaction itself that is taken.

    interactionFailureStrategy

    The failure strategy to follow

  28. def withEventReceivePeriod(recivePeriod: Duration): Recipe

    Permalink

    Sets the event receive period.

    Sets the event receive period. This is the period for which processes can receive sensory events.

    recivePeriod

    The period

  29. def withInteraction(newInteraction: common.InteractionDescriptor): Recipe

    Permalink

    Adds the interaction to the recipe.

    Adds the interaction to the recipe. To get a JInteractionDescriptor from a JInteraction call the of method on JInteractionDescriptor

    newInteraction

    the interaction to add

  30. def withInteractions(newInteractions: common.InteractionDescriptor*): Recipe

    Permalink

    Adds the interactions to the recipe.

    Adds the interactions to the recipe. To get a JInteractionDescriptor from a JInteraction call the of method on JInteractionDescriptor

    newInteractions

    The interactions to add

    Annotations
    @SafeVarargs() @varargs()
  31. def withRecipe(recipe: common.Recipe): Recipe

    Permalink

    This adds all interactions and sieves of the recipe to this recipe Sensory Events are not added and are expected to be given by the recipe itself

  32. def withRetentionPeriod(retentionPeriod: Duration): Recipe

    Permalink

    Sets the process retention period.

    Sets the process retention period. This is the period for which data & history for processes is kept.

    retentionPeriod

    The retention period.

  33. def withSensoryEvent(newEvent: Class[_], maxFiringLimit: Int): Recipe

    Permalink

    Adds the sensory event to the recipe The firing limit is set to what is given

  34. def withSensoryEvent(newEvent: Class[_]): Recipe

    Permalink

    Adds the sensory event to the recipe The firing limit is set to 1 by default

  35. def withSensoryEventNoFiringLimit(newEvent: Class[_]): Recipe

    Permalink

    Adds the sensory event to the recipe with firing limit set to unlimited

  36. def withSensoryEvents(eventsToAdd: Class[_]*): Recipe

    Permalink

    Adds the sensory events to the recipe with the firing limit set to 1

    Adds the sensory events to the recipe with the firing limit set to 1

    Annotations
    @SafeVarargs() @varargs()
  37. def withSensoryEventsNoFiringLimit(eventsToAdd: Class[_]*): Recipe

    Permalink

    Adds the sensory events to the recipe with firing limit set to unlimited

    Adds the sensory events to the recipe with firing limit set to unlimited

    Annotations
    @SafeVarargs() @varargs()
  38. def withSieve(sieveDescriptor: common.InteractionDescriptor): Recipe

    Permalink

    Adds a sieve function to the recipe.

  39. def withSieves(newSieves: common.InteractionDescriptor*): Recipe

    Permalink

    Adds a sieves function to the recipe.

    Adds a sieves function to the recipe.

    Annotations
    @SafeVarargs() @varargs()

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from common.Recipe

Inherited from AnyRef

Inherited from Any

Ungrouped