Examples of MBoxStandalone


Examples of org.miv.mbox.MBoxStandalone

   *
   * @param input
   *            The source of graph events we listen at.
   */
  public ThreadProxyPipeOld(Source input) {
    this(input, new MBoxStandalone());
  }
View Full Code Here

Examples of org.miv.mbox.MBoxStandalone

   *            If false, and if the input graph already contains element they
   *            are not replayed.
   */
  public ThreadProxyPipeOld(Graph inputGraph, Sink firstListener,
      boolean replayGraph) {
    this(inputGraph, firstListener, replayGraph, new MBoxStandalone());
  }
View Full Code Here

Examples of org.miv.mbox.MBoxStandalone

   * @param box The particle box to listen at.
   * @param replay Send events for all the particles already in the particle box ?.
   */
  public ParticleBoxListenerProxy( ParticleBox box, boolean replay )
  {
    events = new MBoxStandalone( this );

    connect( box, replay );
  }
View Full Code Here

Examples of org.miv.mbox.MBoxStandalone

   * @param tree The n-tree to listen at.
   * @param replay Send events for all the n-tree cells already in the tree ?.
   */
  public NTreeListenerProxy( NTree tree, boolean replay )
  {
    events = new MBoxStandalone( this );
   
    connect( tree, replay );
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.