gumbo.util.route
Class ImplRouters

java.lang.Object
  |
  +--gumbo.util.route.ImplRouters

public class ImplRouters
extends java.lang.Object

Predefined "implementation" routers intended for use by event node clients (implement event nodes), not meta-clients (use event nodes). Implementation routes ignore in and out syntax and, as such, can be used for all (direct and relay) connections.

Version:
$Revision: 1.2 $
Author:
Jon Barrilleaux (jonb@jmbaai.com) of JMB and Associates Inc.

Field Summary
static EventDataRouter DEBUG
          Connects A to B, and B to A, where A is a "master" node being monitored by a "slave" node via special debug connections.
static EventDataRouter NORMAL
          Connects A to B.
static EventDataRouter REVERSE
          Connects B to A.
static EventDataRouter TWOWAY
          Connects A to B, and B to A.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

NORMAL

public static final EventDataRouter NORMAL
Connects A to B. Used by implementors. Does no direction checking.


REVERSE

public static final EventDataRouter REVERSE
Connects B to A. Used by implementors. Does no direction checking.


TWOWAY

public static final EventDataRouter TWOWAY
Connects A to B, and B to A. Used by implementors. Does no direction checking.


DEBUG

public static final EventDataRouter DEBUG
Connects A to B, and B to A, where A is a "master" node being monitored by a "slave" node via special debug connections. Used by debuggers. Does no direction checking.