Package org.springmodules.javaspaces

Examples of org.springmodules.javaspaces.JavaSpaceListener


   * @return NotifyDelegator the NotifyDelegator
   * @see {@link http://java.sun.com/products/jini/2.0/doc/api/net/jini/space/JavaSpace.html#addNotifyDelegatorListener(}
   */
  public NotifyDelegator addNotifyDelegatorListener(RemoteEventListener listener,Entry template, MarshalledObject handback,boolean  fifoEnabled,long lease, int notifyMask)
  {
    JavaSpaceListener javaSpaceListener = new JavaSpaceListener();
    javaSpaceListener.setHandback(handback);
    javaSpaceListener.setLease(lease);
    javaSpaceListener.setListener(listener);
    javaSpaceListener.setTemplate(template);
    return addNotifyDelegatorListener(javaSpaceListener, fifoEnabled, notifyMask);
  }
View Full Code Here

TOP

Related Classes of org.springmodules.javaspaces.JavaSpaceListener

Copyright © 2018 www.massapicom. 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.