Uses of Class
orc.trace.events.Event

Packages that use Event
orc.trace Generate and query Orc trace files. 
orc.trace.events Events which may appear in a trace file. 
 

Uses of Event in orc.trace
 

Methods in orc.trace that return Event
 Event WeakBackwardEventCursor.current()
           
 Event InputStreamEventCursor.current()
           
 Event EventCursor.current()
          Return the current event in the stream.
 Event BackwardEventCursor.current()
           
 

Method parameters in orc.trace with type arguments of type Event
protected  void PrintStreamTracer.record(Handle<? extends Event> event)
           
protected  void OutputStreamTracer.record(Handle<? extends Event> event)
           
protected abstract  void AbstractTracer.record(Handle<? extends Event> event)
           
 

Uses of Event in orc.trace.events
 

Subclasses of Event in orc.trace.events
 class BlockEvent
          Thread is blocked waiting for a Future.
 class ChokeEvent
          Thread on right-hand side of a where clause was terminated.
 class DieEvent
          Always the last event in a thread.
 class ErrorEvent
          A fatal error in a thread.
 class ForkEvent
          Spawning a new thread.
 class FreeEvent
          Dummy event used to free a handle to an event.
 class PrintEvent
          Printing to stdout.
 class PublishEvent
          A top-level publication in a thread.
 class PullEvent
          This is just a way to uniquely identify a pull.
 class ReceiveEvent
          Return from a site call.
 class RootEvent
          The root event is like a ForkEvent but it is its own thread.
 class SendEvent
           
 class StoreEvent
          Store a value to a future.
 class UnblockEvent
          Resume after a BlockEvent.
 

Constructors in orc.trace.events with parameters of type Event
FreeEvent(Event event)