Package com.opengamma.engine.view.listener

Examples of com.opengamma.engine.view.listener.ClientShutdownCall


    send(new ProcessTerminatedCall(executionInterrupted));
  }

  @Override
  public void clientShutdown(Exception e) {
    send(new ClientShutdownCall(e));
  }
View Full Code Here


    callReceived(new ProcessTerminatedCall(executionInterrupted));
  }

  @Override
  public void clientShutdown(Exception e) {
    callReceived(new ClientShutdownCall(e));
  }
View Full Code Here

  @Override
  public ClientShutdownCall buildObject(FudgeDeserializer deserializer, FudgeMsg msg) {
    FudgeField exceptionField = msg.getByName(METADATA_FIELD);
    Exception exception = exceptionField != null ? deserializer.fieldValueToObject(Exception.class, exceptionField) : null;
    return new ClientShutdownCall(exception);
  }
View Full Code Here

TOP

Related Classes of com.opengamma.engine.view.listener.ClientShutdownCall

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.