Uses of Class
org.jppf.server.protocol.JPPFTaskBundle

Packages that use JPPFTaskBundle
org.jppf.client Support for the clients connecting to the JPPF driver. 
org.jppf.jca.work Classes supporting the JPPF server connectivity for the JPPF resource adapter. 
org.jppf.server.job Support for job management in the server. 
org.jppf.server.nio.nodeserver Classes supporting the server node-side of the JPPF asynchronous comunication model. 
org.jppf.server.node Classes supporting the server node-side of the JPPF asynchronous comunication model. 
org.jppf.server.node.local Classes supporting local nodes,, in the same JVM as the driver. 
org.jppf.server.node.remote Classes supporting remote nodes. 
org.jppf.server.protocol Classes supporting the data transported between components of the communication model. 
 

Uses of JPPFTaskBundle in org.jppf.client
 

Methods in org.jppf.client with parameters of type JPPFTaskBundle
 void AbstractJPPFClientConnection.sendTasks(JPPFTaskBundle header, JPPFJob job)
          Send tasks to the server for execution.
 

Uses of JPPFTaskBundle in org.jppf.jca.work
 

Methods in org.jppf.jca.work with parameters of type JPPFTaskBundle
 void JPPFJcaClientConnection.sendTasks(ClassLoader cl, JPPFTaskBundle header, JPPFJob job)
          Send tasks to the server for execution.
 void JPPFJcaClientConnection.sendTasks(JPPFTaskBundle header, JPPFJob job)
          Send tasks to the server for execution.
 

Uses of JPPFTaskBundle in org.jppf.server.job
 

Constructors in org.jppf.server.job with parameters of type JPPFTaskBundle
JobEventTask(JPPFJobManager jobManager, JobEventType eventType, JPPFTaskBundle bundle, ChannelWrapper channel)
          Initialize this job manager event task with the specified parameters.
 

Uses of JPPFTaskBundle in org.jppf.server.nio.nodeserver
 

Fields in org.jppf.server.nio.nodeserver declared as JPPFTaskBundle
protected  JPPFTaskBundle AbstractNodeMessage.bundle
          The latest bundle that was sent or received.
 

Methods in org.jppf.server.nio.nodeserver that return JPPFTaskBundle
 JPPFTaskBundle AbstractNodeMessage.getBundle()
          Get the latest bundle that was sent or received.
 

Methods in org.jppf.server.nio.nodeserver with parameters of type JPPFTaskBundle
 void AbstractNodeMessage.setBundle(JPPFTaskBundle bundle)
          Set the latest bundle that was sent or received.
 

Uses of JPPFTaskBundle in org.jppf.server.node
 

Fields in org.jppf.server.node declared as JPPFTaskBundle
protected  JPPFTaskBundle AbstractNodeIO.currentBundle
          The task bundle currently being processed.
 

Methods in org.jppf.server.node that return types with arguments of type JPPFTaskBundle
 Pair<JPPFTaskBundle,List<JPPFTask>> NodeIO.readTask()
          Read a task from the socket connection, along with its header information.
 Pair<JPPFTaskBundle,List<JPPFTask>> AbstractNodeIO.readTask()
          Read a task from the socket connection, along with its header information.
 

Methods in org.jppf.server.node with parameters of type JPPFTaskBundle
protected abstract  Object[] AbstractNodeIO.deserializeObjects(JPPFTaskBundle bundle)
          Perform the deserialization of the objects received through the socket connection.
 void NodeExecutionManagerImpl.execute(JPPFTaskBundle bundle, List<JPPFTask> taskList)
          Execute the specified tasks of the specified tasks bundle.
 void NodeExecutionManagerImpl.setup(JPPFTaskBundle bundle, List<JPPFTask> taskList)
          Prepare this execution manager for executing the tasks of a bundle.
 void NodeIO.writeResults(JPPFTaskBundle bundle, List<JPPFTask> tasks)
          Write the execution results to the socket stream.
abstract  void AbstractNodeIO.writeResults(JPPFTaskBundle bundle, List<JPPFTask> tasks)
          Write the execution results to the socket stream.
 

Uses of JPPFTaskBundle in org.jppf.server.node.local
 

Methods in org.jppf.server.node.local with parameters of type JPPFTaskBundle
protected  Object[] LocalNodeIO.deserializeObjects(JPPFTaskBundle bundle)
          Perform the deserialization of the objects received through the socket connection.
 void LocalNodeIO.writeResults(JPPFTaskBundle bundle, List<JPPFTask> tasks)
          Write the execution results to the socket stream.
 

Uses of JPPFTaskBundle in org.jppf.server.node.remote
 

Methods in org.jppf.server.node.remote with parameters of type JPPFTaskBundle
protected  Object[] RemoteNodeIO.deserializeObjects(JPPFTaskBundle bundle)
          Perform the deserialization of the objects received through the socket connection.
 void RemoteNodeIO.writeResults(JPPFTaskBundle bundle, List<JPPFTask> tasks)
          Write the execution results to the socket stream.
 

Uses of JPPFTaskBundle in org.jppf.server.protocol
 

Methods in org.jppf.server.protocol that return JPPFTaskBundle
 JPPFTaskBundle JPPFTaskBundle.copy()
          Make a copy of this bundle.
 JPPFTaskBundle JPPFTaskBundle.copy(int nbTasks)
          Make a copy of this bundle containing only the first nbTasks tasks it contains.
 JPPFTaskBundle BundleWrapper.getBundle()
          Get the underlying task bundle.
 

Methods in org.jppf.server.protocol with parameters of type JPPFTaskBundle
 int JPPFTaskBundle.compareTo(JPPFTaskBundle bundle)
          Compare two task bundles, based on their respective priorities.
 void BundleWrapper.setBundle(JPPFTaskBundle bundle)
          Set the underlying task bundle.
 

Constructors in org.jppf.server.protocol with parameters of type JPPFTaskBundle
BundleWrapper(JPPFTaskBundle bundle)
          Initialize this bundle wrapper with the specified task bundle.
 



Copyright © 2005-2010 JPPF Team.