001    package com.skype.ipc;
002    
003    
004    public interface ClientDecodingListener {
005            void    sidOnResponseDecoded();
006            void    sidOnGetResponseDecoded();
007            boolean sidWantRead();
008    }
009