001 package com.skype.ipc;
002
003 import java.io.IOException;
004
005 public interface InputTransporting {
006 public void skipBytes(int numBytes) throws IOException;
007 public void readBytes(byte [] dest) throws IOException;
008 public void readBytes(byte [] dest, int offset, int numBytes) throws IOException;
009 public int readByte() throws IOException;
010 public void close() throws IOException;
011 }
012