Package xbird.util.io

Examples of xbird.util.io.RemoteInputStreamProxy


    }

    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;
    }
View Full Code Here

TOP

Related Classes of xbird.util.io.RemoteInputStreamProxy

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.