Package org.apache.camel.spi
Interface InflightRepository.InflightExchange
- Enclosing interface:
InflightRepository
public static interface InflightRepository.InflightExchange
Information about the inflight exchange.
-
Method Summary
Modifier and TypeMethodDescriptionThe id of the route where the exchange currently is being processedlong
The duration in millis the exchange has been inflightlong
The elapsed time in millis processing the exchange at the current nodeThe exchange being inflightThe id of the route where the exchange originates (started)The id of the node from the route where the exchange currently is being processedboolean
Whether the endpoint is remote where the exchange originates (started)
-
Method Details
-
getExchange
Exchange getExchange()The exchange being inflight -
getDuration
long getDuration()The duration in millis the exchange has been inflight -
getElapsed
long getElapsed()The elapsed time in millis processing the exchange at the current node -
getNodeId
String getNodeId()The id of the node from the route where the exchange currently is being processed Is null if message history is disabled. -
getFromRouteId
String getFromRouteId()The id of the route where the exchange originates (started) -
isFromRemoteEndpoint
boolean isFromRemoteEndpoint()Whether the endpoint is remote where the exchange originates (started) -
getAtRouteId
String getAtRouteId()The id of the route where the exchange currently is being processed Is null if message history is disabled.
-