001 package com.skype.ipc;
002
003 import java.io.IOException;
004
005 public interface OutputTransporting {
006 void writeBytes(final byte [] src) throws IOException;
007 void writeBytesAndFlush(final byte [] src) throws IOException;
008 void writeByte(final int value) throws IOException;
009 void writeByteAndFlush(final int value) throws IOException;
010 void close() throws IOException;
011 }
012