Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for setReconnecting (0.06 seconds)

  1. src/main/java/jcifs/internal/smb2/persistent/HandleInfo.java

        public boolean isReconnecting() {
            return reconnecting;
        }
    
        /**
         * Set the reconnecting state
         * @param reconnecting the reconnecting state
         */
        public void setReconnecting(boolean reconnecting) {
            this.reconnecting = reconnecting;
        }
    
        /**
         * Get the associated file object
         * @return the file object (can be null)
         */
        public Object getFile() {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 23 02:21:31 GMT 2025
    - 5.9K bytes
    - Click Count (0)
  2. src/test/java/jcifs/tests/persistent/HandleInfoTest.java

            assertFalse(info.isReconnecting());
    
            info.setReconnecting(true);
            assertTrue(info.isReconnecting());
    
            info.setReconnecting(false);
            assertFalse(info.isReconnecting());
        }
    
        @Test
        public void testFileReference() {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 21 04:51:33 GMT 2025
    - 4.6K bytes
    - Click Count (0)
Back to Top