Package ch.ethz.iks.r_osgi.streams

Examples of ch.ethz.iks.r_osgi.streams.InputStreamHandle


   * @param origIS
   *            the instance of InputStream that needs to be remoted
   * @return the placeholder object that is sent to the actual client
   */
  private InputStreamHandle getInputStreamPlaceholder(final InputStream origIS) {
    final InputStreamHandle sp = new InputStreamHandle(nextStreamID());
    streams.put(new Integer(sp.getStreamID()), origIS);
    return sp;
  }
View Full Code Here

TOP

Related Classes of ch.ethz.iks.r_osgi.streams.InputStreamHandle

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.