| Package | Description |
|---|---|
| org.apache.camel.spi |
Service Provider Interfaces used by the Camel runtime which are plugin strategies.
|
| Modifier and Type | Method and Description |
|---|---|
InflightRepository.InflightExchange |
InflightRepository.oldest(String fromRouteId)
Gets the oldest
InflightRepository.InflightExchange that are currently inflight that started from the given route. |
| Modifier and Type | Method and Description |
|---|---|
Collection<InflightRepository.InflightExchange> |
InflightRepository.browse()
A read-only browser of the
InflightRepository.InflightExchanges that are currently inflight. |
Collection<InflightRepository.InflightExchange> |
InflightRepository.browse(int limit,
boolean sortByLongestDuration)
A read-only browser of the
InflightRepository.InflightExchanges that are currently inflight. |
Collection<InflightRepository.InflightExchange> |
InflightRepository.browse(String fromRouteId)
A read-only browser of the
InflightRepository.InflightExchanges that are currently inflight that started from the given route. |
Collection<InflightRepository.InflightExchange> |
InflightRepository.browse(String fromRouteId,
int limit,
boolean sortByLongestDuration)
A read-only browser of the
InflightRepository.InflightExchanges that are currently inflight that started from the given route. |
Apache Camel