NotifyBuilder |
NotifyBuilder.and() |
Prepares to append an additional expression using the and operator.
|
NotifyBuilder |
NotifyBuilder.create() |
Creates the expression this builder should use for matching.
|
NotifyBuilder |
NotifyBuilder.filter(org.apache.camel.Predicate predicate) |
Optionally a filter to only allow matching Exchange to be used for matching.
|
NotifyBuilder |
NotifyBuilder.from(String endpointUri) |
Optionally a from endpoint which means that this expression should only be based on Exchange
which is originated from the particular endpoint(s).
|
NotifyBuilder |
NotifyBuilder.fromCurrentRoute(String routeId) |
Optionally a from current route which means that this expression should only be based on
Exchange which is the current route(s).
|
NotifyBuilder |
NotifyBuilder.fromRoute(String routeId) |
Optionally a from route which means that this expression should only be based on Exchange which
is originated from the particular route(s).
|
NotifyBuilder |
NotifyBuilder.not() |
Prepares to append an additional expression using the not operator.
|
NotifyBuilder |
NotifyBuilder.or() |
Prepares to append an additional expression using the or operator.
|
NotifyBuilder |
NotifyBuilder.waitTime(long waitTime) |
|
NotifyBuilder |
NotifyBuilder.wereSentTo(String endpointUri) |
Optionally a sent to endpoint which means that this expression should only be based on Exchange
which has been sent to the given endpoint uri.
|
NotifyBuilder |
NotifyBuilder.whenAllDoneMatches(org.apache.camel.Predicate predicate) |
Sets a condition that all done Exchange should match the Predicate
|
NotifyBuilder |
NotifyBuilder.whenAllReceivedMatches(org.apache.camel.Predicate predicate) |
Sets a condition that all received Exchange should match the Predicate
|
NotifyBuilder |
NotifyBuilder.whenAnyDoneMatches(org.apache.camel.Predicate predicate) |
Sets a condition that any done Exchange should match the Predicate
|
NotifyBuilder |
NotifyBuilder.whenAnyReceivedMatches(org.apache.camel.Predicate predicate) |
Sets a condition that any received Exchange should match the Predicate
|
NotifyBuilder |
NotifyBuilder.whenBodiesDone(Object... bodies) |
Sets a condition that the bodies is expected to be done in the order as well.
|
NotifyBuilder |
NotifyBuilder.whenBodiesReceived(Object... bodies) |
Sets a condition that the bodies is expected to be received in the order as well.
|
NotifyBuilder |
NotifyBuilder.whenCompleted(int number) |
Sets a condition when number of Exchange has been completed.
|
NotifyBuilder |
NotifyBuilder.whenDone(int number) |
Sets a condition when number of Exchange is done being processed.
|
NotifyBuilder |
NotifyBuilder.whenDoneByIndex(int index) |
Sets a condition when tne n'th (by index) Exchange is done being processed.
|
NotifyBuilder |
NotifyBuilder.whenDoneNotSatisfied(org.apache.camel.spi.NotifyBuilderMatcher matcher) |
Sets a condition when the provided matcher (such as mock endpoint) is not satisfied based on
Exchange being sent to it when they are done.
|
NotifyBuilder |
NotifyBuilder.whenDoneSatisfied(org.apache.camel.spi.NotifyBuilderMatcher matcher) |
Sets a condition when the provided matcher (such as mock endpoint) is satisfied based on Exchange being
sent to it when they are done.
|
NotifyBuilder |
NotifyBuilder.whenExactBodiesDone(Object... bodies) |
Sets a condition that the bodies is expected to be done in the order as well.
|
NotifyBuilder |
NotifyBuilder.whenExactBodiesReceived(Object... bodies) |
Sets a condition that the bodies is expected to be received in the order as well.
|
NotifyBuilder |
NotifyBuilder.whenExactlyCompleted(int number) |
Sets a condition when number of Exchange has been completed.
|
NotifyBuilder |
NotifyBuilder.whenExactlyDone(int number) |
Sets a condition when number of Exchange is done being processed.
|
NotifyBuilder |
NotifyBuilder.whenExactlyFailed(int number) |
Sets a condition when number of Exchange has failed.
|
NotifyBuilder |
NotifyBuilder.whenFailed(int number) |
Sets a condition when number of Exchange has failed.
|
NotifyBuilder |
NotifyBuilder.whenReceived(int number) |
Sets a condition when number of Exchange has been received.
|
NotifyBuilder |
NotifyBuilder.whenReceivedNotSatisfied(org.apache.camel.spi.NotifyBuilderMatcher matcher) |
Sets a condition when the provided matcher (such as mock endpoint) is not satisfied based on
Exchange being sent to it when they are received.
|
NotifyBuilder |
NotifyBuilder.whenReceivedSatisfied(org.apache.camel.spi.NotifyBuilderMatcher matcher) |
Sets a condition when the provided matcher (such as mock endpoint) is satisfied based on Exchange being
sent to it when they are received.
|