Class PrototypeObjectFactorySupport<T>

java.lang.Object
org.apache.camel.support.service.BaseService
org.apache.camel.support.service.ServiceSupport
org.apache.camel.support.PrototypeObjectFactorySupport<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 PrototypeObjectFactorySupport<T> extends org.apache.camel.support.service.ServiceSupport implements org.apache.camel.spi.PooledObjectFactory<T>
PooledObjectFactory that creates a new instance (does not pool).
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    protected final class 
    Represents utilization statistics

    Nested classes/interfaces inherited from interface org.apache.camel.spi.PooledObjectFactory

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

    Fields
    Modifier and Type
    Field
    Description
    protected org.apache.camel.CamelContext
     
     
    protected boolean
     

    Fields inherited from class org.apache.camel.support.service.BaseService

    BUILT, FAILED, INITIALIZED, INITIALIZING, lock, NEW, SHUTDOWN, SHUTTING_DOWN, STARTED, STARTING, status, STOPPED, STOPPING, SUSPENDED, SUSPENDING
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    protected void
     
    org.apache.camel.CamelContext
     
    int
     
    int
     
    org.apache.camel.spi.PooledObjectFactory.Statistics
     
    boolean
     
    boolean
     
    void
     
    void
     
    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, doBuild, 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 class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    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
  • Field Details

  • Constructor Details

    • PrototypeObjectFactorySupport

      public PrototypeObjectFactorySupport()
  • Method Details

    • 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
    • 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>
    • 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>
    • resetStatistics

      public void resetStatistics()
      Specified by:
      resetStatistics 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>
    • isPooled

      public boolean isPooled()
      Specified by:
      isPooled 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