FileDocCategorySizeDatePackage
TransTransactNamedPipeResponse.javaAPI DocJCIFS 1.3.17 API2079Tue Oct 18 15:26:24 BST 2011jcifs.smb

TransTransactNamedPipeResponse

public class TransTransactNamedPipeResponse extends SmbComTransactionResponse

Fields Summary
private SmbNamedPipe
pipe
Constructors Summary
TransTransactNamedPipeResponse(SmbNamedPipe pipe)

        this.pipe = pipe;
    
Methods Summary
intreadDataWireFormat(byte[] buffer, int bufferIndex, int len)

        if( pipe.pipeIn != null ) {
            TransactNamedPipeInputStream in = (TransactNamedPipeInputStream)pipe.pipeIn;
            synchronized( in.lock ) {
                in.receive( buffer, bufferIndex, len );
                in.lock.notify();
            }
        }
        return len;
    
intreadParametersWireFormat(byte[] buffer, int bufferIndex, int len)

        return 0;
    
intreadSetupWireFormat(byte[] buffer, int bufferIndex, int len)

        return 0;
    
public java.lang.StringtoString()

        return new String( "TransTransactNamedPipeResponse[" + super.toString() + "]" );
    
intwriteDataWireFormat(byte[] dst, int dstIndex)

        return 0;
    
intwriteParametersWireFormat(byte[] dst, int dstIndex)

        return 0;
    
intwriteSetupWireFormat(byte[] dst, int dstIndex)

        return 0;