Interface ExternalOutputBuffer
public interface ExternalOutputBuffer
ExternalOutputBuffer are used in buffering the event data when sending
updates to the user. Rather than have the EventAdapter have to know
about the myriad eventOut types, it just deals with them as EventOut
instances that happen to implement ExternalOutputBuffer.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
initialize
(VRMLNodeType srcNode, int fieldNumber) Initialize for a new fieldvoid
Load the current value from the underlying implementation.void
reset()
Lose the stored value to save on references
-
Method Details
-
initialize
Initialize for a new field- Parameters:
srcNode
- The underlying node which is associated with the event.fieldNumber
- The field of the underlying node.
-
loadOutputValue
void loadOutputValue()Load the current value from the underlying implementation. -
reset
void reset()Lose the stored value to save on references
-