Package org.jboss.marshalling

Examples of org.jboss.marshalling.SimpleDataInput


*/
public class SimpleByteDataInput extends InputStream implements ByteDataInput {
    private final SimpleDataInput input;

    public SimpleByteDataInput(final InputStream inputStream) {
        this.input = new SimpleDataInput(Marshalling.createByteInput(inputStream));
    }
View Full Code Here

TOP

Related Classes of org.jboss.marshalling.SimpleDataInput

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.