Package org.apache.camel.spi
Interface InflightRepository.InflightExchange
-
- Enclosing interface:
- InflightRepository
public static interface InflightRepository.InflightExchangeInformation about the inflight exchange.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAtRouteId()The id of the route where the exchange currently is being processedlonggetDuration()The duration in millis the exchange has been inflightlonggetElapsed()The elapsed time in millis processing the exchange at the current nodeExchangegetExchange()The exchange being inflightStringgetFromRouteId()The id of the route where the exchange originates (started)StringgetNodeId()The id of the node from the route where the exchange currently is being processed
-
-
-
Method Detail
-
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)
-
getAtRouteId
String getAtRouteId()
The id of the route where the exchange currently is being processed Is null if message history is disabled.
-
-