Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NtTransNotifyChange (0.09 sec)

  1. src/main/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChange.java

     *
     * This transaction allows monitoring of file system changes in a directory,
     * such as file creation, modification, deletion, and attribute changes.
     */
    public class NtTransNotifyChange extends SmbComNtTransaction {
    
        int fid;
        private final int completionFilter;
        private final boolean watchTree;
    
        /**
         * Constructs an NT transaction for change notification monitoring.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeTest.java

        void testMultipleInstancesIndependence() {
            NtTransNotifyChange notify1 = new NtTransNotifyChange(mockConfig, 0x1111, FILE_NOTIFY_CHANGE_FILE_NAME, false);
            NtTransNotifyChange notify2 = new NtTransNotifyChange(mockConfig, 0x2222, FILE_NOTIFY_CHANGE_DIR_NAME, true);
            NtTransNotifyChange notify3 = new NtTransNotifyChange(mockConfig, 0x3333, FILE_NOTIFY_CHANGE_ATTRIBUTES, false);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbWatchHandleImpl.java

                     */
                    req = new NtTransNotifyChange(th.getConfig(), this.handle.getFid(), this.filter, this.recursive);
                    resp = new NtTransNotifyChangeResponse(th.getConfig());
                }
    
                if (log.isTraceEnabled()) {
                    log.trace("Sending NtTransNotifyChange for " + this.handle);
                }
                try {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/SmbWatchHandleImplTest.java

    import jcifs.Configuration;
    import jcifs.FileNotifyInformation;
    import jcifs.SmbConstants;
    import jcifs.internal.CommonServerMessageBlockRequest;
    import jcifs.internal.NotifyResponse;
    import jcifs.internal.smb1.trans.nt.NtTransNotifyChange;
    import jcifs.internal.smb2.notify.Smb2ChangeNotifyRequest;
    
    /**
     * Tests for SmbWatchHandleImpl focusing on behavior and interactions.
     */
    @ExtendWith(MockitoExtension.class)
    class SmbWatchHandleImplTest {
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
Back to top