Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getTreeNum (0.22 sec)

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

         */
        public int getTid () {
            return this.tid;
        }
    
    
        /**
         * @return the tree_num (monotonically increasing counter to track reconnects)
         */
        public long getTreeNum () {
            return this.treeNum;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.lang.Object#hashCode()
         */
        @Override
        public int hashCode () {
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeConnection.java

         */
        @SuppressWarnings ( "resource" )
        public long getTreeId () {
            SmbTreeImpl t = getTreeInternal();
            if ( t == null ) {
                return -1;
            }
            return t.getTreeNum();
        }
    
    
        /**
         * 
         * Only call this method while holding a tree handle
         * 
         * @return session that this file has been loaded through
         */
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
Back to top