Package org.apache.camel.impl.engine
Class DefaultInflightRepository
- java.lang.Object
-
- org.apache.camel.support.service.BaseService
-
- org.apache.camel.support.service.ServiceSupport
-
- org.apache.camel.impl.engine.DefaultInflightRepository
-
- All Implemented Interfaces:
AutoCloseable,org.apache.camel.Service,org.apache.camel.ShutdownableService,org.apache.camel.spi.InflightRepository,org.apache.camel.StatefulService,org.apache.camel.StaticService,org.apache.camel.SuspendableService
public class DefaultInflightRepository extends org.apache.camel.support.service.ServiceSupport implements org.apache.camel.spi.InflightRepositoryDefaultInflightRepository.
-
-
Constructor Summary
Constructors Constructor Description DefaultInflightRepository()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(org.apache.camel.Exchange exchange)voidadd(org.apache.camel.Exchange exchange, String routeId)voidaddRoute(String routeId)Collection<org.apache.camel.spi.InflightRepository.InflightExchange>browse()Collection<org.apache.camel.spi.InflightRepository.InflightExchange>browse(int limit, boolean sortByLongestDuration)Collection<org.apache.camel.spi.InflightRepository.InflightExchange>browse(String fromRouteId)Collection<org.apache.camel.spi.InflightRepository.InflightExchange>browse(String fromRouteId, int limit, boolean sortByLongestDuration)protected voiddoStop()booleanisInflightBrowseEnabled()org.apache.camel.spi.InflightRepository.InflightExchangeoldest(String fromRouteId)voidremove(org.apache.camel.Exchange exchange)voidremove(org.apache.camel.Exchange exchange, String routeId)voidremoveRoute(String routeId)voidsetInflightBrowseEnabled(boolean inflightBrowseEnabled)intsize()intsize(String routeId)-
Methods inherited from class org.apache.camel.support.service.BaseService
build, doBuild, doFail, doInit, doLifecycleChange, doResume, doShutdown, doStart, doSuspend, fail, getStatus, init, isBuild, isInit, isNew, isRunAllowed, isShutdown, isStarted, isStarting, isStartingOrStarted, isStopped, isStopping, isStoppingOrStopped, isSuspended, isSuspending, isSuspendingOrSuspended, resume, shutdown, start, stop, suspend
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
Method Detail
-
add
public void add(org.apache.camel.Exchange exchange)
- Specified by:
addin interfaceorg.apache.camel.spi.InflightRepository
-
remove
public void remove(org.apache.camel.Exchange exchange)
- Specified by:
removein interfaceorg.apache.camel.spi.InflightRepository
-
add
public void add(org.apache.camel.Exchange exchange, String routeId)- Specified by:
addin interfaceorg.apache.camel.spi.InflightRepository
-
remove
public void remove(org.apache.camel.Exchange exchange, String routeId)- Specified by:
removein interfaceorg.apache.camel.spi.InflightRepository
-
size
public int size()
- Specified by:
sizein interfaceorg.apache.camel.spi.InflightRepository
-
addRoute
public void addRoute(String routeId)
- Specified by:
addRoutein interfaceorg.apache.camel.spi.InflightRepository
-
removeRoute
public void removeRoute(String routeId)
- Specified by:
removeRoutein interfaceorg.apache.camel.spi.InflightRepository
-
size
public int size(String routeId)
- Specified by:
sizein interfaceorg.apache.camel.spi.InflightRepository
-
isInflightBrowseEnabled
public boolean isInflightBrowseEnabled()
- Specified by:
isInflightBrowseEnabledin interfaceorg.apache.camel.spi.InflightRepository
-
setInflightBrowseEnabled
public void setInflightBrowseEnabled(boolean inflightBrowseEnabled)
- Specified by:
setInflightBrowseEnabledin interfaceorg.apache.camel.spi.InflightRepository
-
browse
public Collection<org.apache.camel.spi.InflightRepository.InflightExchange> browse()
- Specified by:
browsein interfaceorg.apache.camel.spi.InflightRepository
-
browse
public Collection<org.apache.camel.spi.InflightRepository.InflightExchange> browse(String fromRouteId)
- Specified by:
browsein interfaceorg.apache.camel.spi.InflightRepository
-
browse
public Collection<org.apache.camel.spi.InflightRepository.InflightExchange> browse(int limit, boolean sortByLongestDuration)
- Specified by:
browsein interfaceorg.apache.camel.spi.InflightRepository
-
browse
public Collection<org.apache.camel.spi.InflightRepository.InflightExchange> browse(String fromRouteId, int limit, boolean sortByLongestDuration)
- Specified by:
browsein interfaceorg.apache.camel.spi.InflightRepository
-
oldest
public org.apache.camel.spi.InflightRepository.InflightExchange oldest(String fromRouteId)
- Specified by:
oldestin interfaceorg.apache.camel.spi.InflightRepository
-
-