Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getNotifyInformation (0.12 sec)

  1. src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyResponse.java

            }
    
            return bufferIndex - start;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.NotifyResponse#getNotifyInformation()
         */
        @Override
        public List<FileNotifyInformation> getNotifyInformation () {
            return this.notifyInformation;
        }
    
        /**
         * {@inheritDoc}
         *
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 05 07:13:17 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbWatchHandleImpl.java

                if ( resp.getErrorCode() == 0x10B ) {
                    this.handle.markClosed();
                }
                if ( resp.getErrorCode() == 0x10C ) {
                    resp.getNotifyInformation().clear();
                }
                return resp.getNotifyInformation();
            }
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.SmbWatchHandle#call()
         */
        @Override
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/NotifyResponse.java

    
    /**
     * @author mbechler
     *
     */
    public interface NotifyResponse extends CommonServerMessageBlockResponse {
    
        /**
         * @return notify information
         */
        List<FileNotifyInformation> getNotifyInformation ();
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeResponse.java

            super(config);
        }
    
    
        /**
         * @return the notifyInformation
         */
        @Override
        public final List<FileNotifyInformation> getNotifyInformation () {
            return this.notifyInformation;
        }
    
    
        @Override
        protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
        @Override
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3K bytes
    - Viewed (0)
Back to top