Class PooledObjectFactorySupport<T>

  • All Implemented Interfaces:
    AutoCloseable, org.apache.camel.CamelContextAware, org.apache.camel.Service, org.apache.camel.ShutdownableService, org.apache.camel.spi.PooledObjectFactory<T>, org.apache.camel.StatefulService, org.apache.camel.SuspendableService

    public abstract class PooledObjectFactorySupport<T>
    extends org.apache.camel.support.service.ServiceSupport
    implements org.apache.camel.spi.PooledObjectFactory<T>
    Base class for building PooledObjectFactory based factories.
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      protected class  PooledObjectFactorySupport.UtilizationStatistics
      Represents utilization statistics
      • Nested classes/interfaces inherited from interface org.apache.camel.spi.PooledObjectFactory

        org.apache.camel.spi.PooledObjectFactory.Statistics
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected void doBuild()  
      protected void doShutdown()  
      org.apache.camel.CamelContext getCamelContext()  
      int getCapacity()  
      int getSize()  
      org.apache.camel.spi.PooledObjectFactory.Statistics getStatistics()  
      boolean isPooled()  
      boolean isStatisticsEnabled()  
      void purge()  
      void resetStatistics()  
      void setCamelContext​(org.apache.camel.CamelContext camelContext)  
      void setCapacity​(int capacity)  
      void setStatisticsEnabled​(boolean statisticsEnabled)  
      • Methods inherited from class org.apache.camel.support.service.BaseService

        build, doFail, doInit, doLifecycleChange, doResume, doStart, doStop, 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 interface org.apache.camel.spi.PooledObjectFactory

        acquire, release
      • Methods inherited from interface org.apache.camel.Service

        build, close, init, start, stop
      • Methods inherited from interface org.apache.camel.ShutdownableService

        shutdown
      • Methods inherited from interface org.apache.camel.StatefulService

        getStatus, isRunAllowed, isStarted, isStarting, isStopped, isStopping, isSuspending
      • Methods inherited from interface org.apache.camel.SuspendableService

        isSuspended, resume, suspend
    • Constructor Detail

      • PooledObjectFactorySupport

        public PooledObjectFactorySupport()
      • PooledObjectFactorySupport

        public PooledObjectFactorySupport​(Object source)
    • Method Detail

      • doBuild

        protected void doBuild()
                        throws Exception
        Overrides:
        doBuild in class org.apache.camel.support.service.BaseService
        Throws:
        Exception
      • getCamelContext

        public org.apache.camel.CamelContext getCamelContext()
        Specified by:
        getCamelContext in interface org.apache.camel.CamelContextAware
      • setCamelContext

        public void setCamelContext​(org.apache.camel.CamelContext camelContext)
        Specified by:
        setCamelContext in interface org.apache.camel.CamelContextAware
      • isStatisticsEnabled

        public boolean isStatisticsEnabled()
        Specified by:
        isStatisticsEnabled in interface org.apache.camel.spi.PooledObjectFactory<T>
      • setStatisticsEnabled

        public void setStatisticsEnabled​(boolean statisticsEnabled)
        Specified by:
        setStatisticsEnabled in interface org.apache.camel.spi.PooledObjectFactory<T>
      • getSize

        public int getSize()
        Specified by:
        getSize in interface org.apache.camel.spi.PooledObjectFactory<T>
      • getCapacity

        public int getCapacity()
        Specified by:
        getCapacity in interface org.apache.camel.spi.PooledObjectFactory<T>
      • setCapacity

        public void setCapacity​(int capacity)
        Specified by:
        setCapacity in interface org.apache.camel.spi.PooledObjectFactory<T>
      • resetStatistics

        public void resetStatistics()
        Specified by:
        resetStatistics in interface org.apache.camel.spi.PooledObjectFactory<T>
      • isPooled

        public boolean isPooled()
        Specified by:
        isPooled in interface org.apache.camel.spi.PooledObjectFactory<T>
      • purge

        public void purge()
        Specified by:
        purge in interface org.apache.camel.spi.PooledObjectFactory<T>
      • getStatistics

        public org.apache.camel.spi.PooledObjectFactory.Statistics getStatistics()
        Specified by:
        getStatistics in interface org.apache.camel.spi.PooledObjectFactory<T>
      • doShutdown

        protected void doShutdown()
                           throws Exception
        Overrides:
        doShutdown in class org.apache.camel.support.service.BaseService
        Throws:
        Exception