galaxy.server
Interface Continuation


public interface Continuation

This is the interface of the object that resumes the processing of a suspended dispatch function.


Method Summary
 GFrame run(GFrame frame, int msgType, java.lang.Object continuationState, Environment env)
          This is the method that is run when the processing of a dispatch function is resumed.
 

Method Detail

run

public GFrame run(GFrame frame,
                  int msgType,
                  java.lang.Object continuationState,
                  Environment env)
This is the method that is run when the processing of a dispatch function is resumed.
Parameters:
frame - the GFrame to process
msgType - the message type of the message that contained the frame
continuationState - the state data to be used in the continuation
env - the call environment in which the continuation is to be processed
Returns:
the result of the continued dispatch function