Class ExecutorServiceBean

  • All Implemented Interfaces:
    ExecutorService

    public class ExecutorServiceBean
    extends java.lang.Object
    implements ExecutorService
    Bean exposing the JCA implementation of the ExecutorService as Stateless Bean.
    Author:
    Daniel Meyer
    • Constructor Detail

      • ExecutorServiceBean

        public ExecutorServiceBean()
    • Method Detail

      • openConnection

        @PostConstruct
        protected void openConnection()
      • closeConnection

        @PreDestroy
        protected void closeConnection()
      • schedule

        public boolean schedule​(java.lang.Runnable runnable,
                                boolean isLongRunning)
        Description copied from interface: ExecutorService

        Passes a Runnable to the runtime container for execution. Some runtime containers (like a Java EE container offer container provided infrastructure for executing background work (such as a JCA WorkManager). This method allows the process engine to take advantage of container infrastructure for doing background work.

        Specified by:
        schedule in interface ExecutorService
        Parameters:
        runnable - the Runnable to be executed.
        isLongRunning - indicates whether the runnable is a daemon.
        Returns:
        true if the runnable could be successfully scheduled for execution. 'false' otherwise.