}
public RemoteInputStream fetch(int size) throws RemoteException {
final byte[] ary = fetchBytes(size, false);
final FastByteArrayInputStream bis = new FastByteArrayInputStream(ary);
final IRemoteInputStreamProxy proxy = new RemoteInputStreamProxy(bis);
final RemoteInputStream remote = new RemoteInputStream(proxy);
return remote;
}