Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for void (0.2 sec)

  1. src/main/java/jcifs/dcerpc/DcerpcHandle.java

        }
    
    
        protected abstract void doSendFragment ( byte[] buf, int off, int length ) throws IOException;
    
    
        protected abstract int doReceiveFragment ( byte[] buf ) throws IOException;
    
    
        protected abstract int doSendReceiveFragment ( byte[] out, int off, int length, byte[] inB ) throws IOException;
    
    
        @Override
        public void close () throws IOException {
            this.state = 0;
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jun 30 10:11:57 GMT 2019
    - 12.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java

            return binding.toString();
        }
    
        protected abstract void doSendFragment(byte[] buf,
                    int off,
                    int length,
                    boolean isDirect) throws IOException;
        protected abstract void doReceiveFragment(byte[] buf, boolean isDirect) throws IOException;
        public abstract void close() throws IOException;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.8K bytes
    - Viewed (0)
Back to top