Package com.opengamma.util.monitor

Examples of com.opengamma.util.monitor.ReportingOutputStream


    }
    if (_socket == null) {
      throw new OpenGammaRuntimeException("Unable to open remote connection to " + getInetAddresses() + ":" + getPortNumber());
    }
    is = new ReportingInputStream(s_logger, _socket.getRemoteSocketAddress().toString(), is);
    os = new ReportingOutputStream(s_logger, _socket.getRemoteSocketAddress().toString(), os);
    socketOpened(_socket, new BufferedOutputStream(os), new BufferedInputStream(is));
  }
View Full Code Here

TOP

Related Classes of com.opengamma.util.monitor.ReportingOutputStream

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.