Package org.jamesii.core.services.observer

Examples of org.jamesii.core.services.observer.ServiceObserverProxy


  private static final long serialVersionUID = -6293831458882554598L;

  @Override
  public boolean register(IMSSystemHost host, IRemoteObserver remote) {

    IObserver<?> proxy = new ServiceObserverProxy(remote);
    if (host instanceof SimulationHost) {
      ((SimulationHost) host).getTaskManager().registerObserver(proxy);
      return true;
    }
    try {
View Full Code Here


  private static final long serialVersionUID = -6293831458882554598L;

  @Override
  public boolean register(IMSSystemHost host, IRemoteObserver remote) {

    IObserver<?> proxy = new ServiceObserverProxy(remote);
    if (host instanceof MasterServer) {
      ((MasterServer) host).getServiceRegistry().registerObserver(proxy);
      return true;
    }
    try {
View Full Code Here

TOP

Related Classes of org.jamesii.core.services.observer.ServiceObserverProxy

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.