Uses of Interface
com.cosylab.jcosyne.server.RemoteTaskMBean

Packages that use RemoteTaskMBean
com.cosylab.jcosyne.server This package contains the framework necessary to create JCosyne remote tasks which perfom custom computations. 
 

Uses of RemoteTaskMBean in com.cosylab.jcosyne.server
 

Subinterfaces of RemoteTaskMBean in com.cosylab.jcosyne.server
 interface ExecutorMBean
          Parametrizes JMX interface to the Executor.
 interface FactorizationMBean
          This example task factorizes a number into primes.
 interface LogCollectorMBean
          Parametrizes the JMX interface to the LogCollector.
 interface ResultRepositoryMBean
          MBean compliant interface to the result repository.
 interface SentinelMBean
          Sentinel is a remote task that shuts down all remote tasks and sends notification to the server that it should terminate.
 

Classes in com.cosylab.jcosyne.server that implement RemoteTaskMBean
 class Executor
          Executor is one of the predefined MBeans provided by JCosyne framework, which keeps track of other executing remote tasks.
 class Factorization
          This is a trivial implementation of the FactorizationMBean interface which uses naive brute search-for-factors algorithm.
 class LogCollector
          LogCollector remote task is one of the predefined remote tasks running in each JCosyne JMX server.
 class RemoteTask
          Remote Task is the base convenience class from which all remote tasks inherit.
 class ResultRepository
          This is the implementation of the functionality parametrized by ResultRepositoryMBean.
 class Sentinel
          The implementation of sentinel remote task.