001    package com.skype.ipc;
002    
003    import java.io.IOException;
004    
005    public interface ClientEncodingListener {
006            Decoding sidOnRequestEncoded(int requestId) throws IOException;
007            Decoding sidOnOneWayRequestEncoded(int requestId) throws IOException;
008            Decoding sidOnGetRequestEncoded() throws IOException;
009    }
010    
011