Package org.apache.camel.spi
Interface InflightRepository.InflightExchange
-
- Enclosing interface:
- InflightRepository
public static interface InflightRepository.InflightExchange
Information about the inflight exchange.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getAtRouteId()
The id of the route where the exchange currently is being processedlong
getDuration()
The duration in millis the exchange has been inflightlong
getElapsed()
The elapsed time in millis processing the exchange at the current nodeExchange
getExchange()
The exchange being inflightString
getFromRouteId()
The id of the route where the exchange originates (started)String
getNodeId()
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.
-
-