- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for isNotificationEnabled (0.07 sec)
-
src/test/java/jcifs/internal/smb2/lease/DirectoryLeaseContextTest.java
assertEquals(leaseState, context.getLeaseState()); assertEquals(scope, context.getCacheScope()); assertEquals(30000L, context.getMaxCacheAge()); assertTrue(context.isNotificationEnabled()); assertEquals(0, context.getNotificationFilter()); } @Test public void testGetName() { Smb2LeaseKey key = new Smb2LeaseKey();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 10.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/DirectoryLeasingIntegrationTest.java
assertEquals(context.getCacheScope(), decodedContext.getCacheScope()); assertEquals(context.getMaxCacheAge(), decodedContext.getMaxCacheAge()); assertEquals(context.isNotificationEnabled(), decodedContext.isNotificationEnabled()); assertEquals(context.getNotificationFilter(), decodedContext.getNotificationFilter()); assertArrayEquals(context.getLeaseKey().getKey(), decodedContext.getLeaseKey().getKey()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseContext.java
} /** * Checks if directory change notifications are enabled for cache invalidation * @return true if change notifications are enabled */ public boolean isNotificationEnabled() { return notificationEnabled; } /** * Enables or disables directory change notifications * @param notificationEnabled true to enable change notifications */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 9.4K bytes - Viewed (0)