- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for isNotificationEnabled (0.12 seconds)
-
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 */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 02:21:31 GMT 2025 - 9.4K bytes - Click Count (0) -
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();
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 01:47:47 GMT 2025 - 10.1K bytes - Click Count (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()); }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 01:47:47 GMT 2025 - 14.2K bytes - Click Count (0)