Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setRemaining (1.07 sec)

  1. src/main/java/jcifs/internal/smb1/com/SmbComReadAndX.java

            this.openTimeout = openTimeout;
        }
    
        /**
         * Sets the remaining bytes count.
         *
         * @param remaining
         *            the remaining to set
         */
        public final void setRemaining(final int remaining) {
            this.remaining = remaining;
        }
    
        void setParam(final int fid, final long offset, final int maxCount) {
            this.fid = fid;
            this.offset = offset;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/io/Smb2WriteResponse.java

        public final int getCount() {
            return this.count;
        }
    
        /**
         * Returns the number of bytes remaining to be written.
         *
         * @return the remaining
         */
        public final int getRemaining() {
            return this.remaining;
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.smb2.ServerMessageBlock2#writeBytesWireFormat(byte[], int)
         */
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.8K bytes
    - Viewed (0)
Back to top