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) 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)

    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
    Definition Classes
    RecipeRecipe
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def finalize(): Unit

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

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

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

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

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

    Permalink

    The set of interactions.

    The set of interactions.

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

    Permalink
    Definition Classes
    Any
  15. val name: String

    Permalink

    The name of the recipe.

    The name of the recipe.

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

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

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

    Permalink
    Definition Classes
    AnyRef
  19. val sensoryEvents: Set[Event]

    Permalink

    The set of events.

    The set of events.

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

    Permalink

    The set of sieves.

    The set of sieves.

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

    Permalink
    Definition Classes
    AnyRef
  22. def toString(): String

    Permalink
    Definition Classes
    Recipe → AnyRef → Any
  23. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. def withDefaultRetryFailureStrategy(initialDelay: Duration, backoffFactor: Double, maximumRetries: Int): Recipe

    Permalink

    This actives the incremental backup retry strategy for all the interactions if failure occurs

    This actives the incremental backup retry strategy for all the interactions if failure occurs

    initialDelay

    the initial delay before the first retry starts

    backoffFactor

    the backoff factor for the retry

    maximumRetries

    the maximum ammount of retries.

  27. def withDefaultRetryFailureStrategy(initialDelay: Duration, deadline: Duration): Recipe

    Permalink

    This actives the incremental backup retry strategy for all the interactions if failure occurs

    This actives the incremental backup retry strategy for all the interactions if failure occurs

    initialDelay

    the initial delay before the first retry starts

    deadline

    the deadline for how long the retry should run

  28. 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

  29. 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()
  30. 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

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

    Permalink

    Adds the sensory event to the recipe

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

    Permalink

    Adds the sensory events to the recipe

    Adds the sensory events to the recipe

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

    Permalink

    Adds a sieve function to the recipe.

  34. 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