orc.runtime.nodes.result
Class Result

java.lang.Object
  extended by orc.runtime.nodes.Node
      extended by orc.runtime.nodes.result.Result
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
PrintResult, QueueResult, WriteResult

public abstract class Result
extends Node

See Also:
Serialized Form

Constructor Summary
Result()
           
 
Method Summary
abstract  void emit(Value v)
           
 void process(Token t)
          The process method is the fundamental operation in the execution engine.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Result

public Result()
Method Detail

process

public void process(Token t)
Description copied from class: Node
The process method is the fundamental operation in the execution engine. It is called to perform the action of the node on a token.

Specified by:
process in class Node
Parameters:
t - input token being processed

emit

public abstract void emit(Value v)