* the instance of OutputStream that needs to be remoted
* @return the placeholder object that is sent to the actual client
*/
private OutputStreamHandle getOutputStreamPlaceholder(
final OutputStream origOS) {
final OutputStreamHandle sp = new OutputStreamHandle(nextStreamID());
streams.put(new Integer(sp.getStreamID()), origOS);
return sp;
}