Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Method

Description

create()

Creates the builder expression. After you have created it you can use the matches methods.

matches()

Does the builder match currently. This operation returns immediately. This method is to be used after you have created the expression.

matches(timeout, TimeUnit)

Wait until the builder matches or timeout. This method is to be used after you have created the expression.

matchesMockWaitTime

Camel 2.6: Wait until the builder matches or timeout. The timeout value used is based on the highest result wait time configured on any of mock endpoints being used. If no mock endpoint was used, then the default timeout value is 10 seconds. This method is convenient to use in unit tests when you use mocks. Then you dont have to specify the timeout value explicit.

reset()

Camel 2.3: Resets the notifier.

...