Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for doCloseInternal (0.32 sec)

  1. src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java

                this.closed = true;
                try {
                    doCloseInternal();
                }
                finally {
                    this.next = null;
                    this.treeHandle.release();
                }
            }
        }
    
    
        /**
         * 
         */
        protected abstract void doCloseInternal () throws CIFSException;
    
    
        /**
         * {@inheritDoc}
         *
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/DirFileEntryEnumIterator1.java

        @Override
        protected boolean isDone () {
            return this.response.isEndOfSearch();
        }
    
    
        /**
         * @throws CIFSException
         */
        @Override
        protected void doCloseInternal () throws CIFSException {
            try {
                @SuppressWarnings ( "resource" )
                SmbTreeHandleImpl th = getTreeHandle();
                if ( this.response != null ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Nov 13 15:13:49 GMT 2021
    - 5.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/DirFileEntryEnumIterator2.java

         */
        @Override
        protected boolean isDone () {
            return false;
        }
    
    
        /**
         * @throws CIFSException
         */
        @Override
        protected void doCloseInternal () throws CIFSException {
            try {
                @SuppressWarnings ( "resource" )
                SmbTreeHandleImpl th = getTreeHandle();
                if ( this.fileId != null && th.isConnected() ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Dec 20 16:15:08 GMT 2020
    - 5.7K bytes
    - Viewed (0)
Back to top