Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getTreeNum (0.79 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() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeConnection.java

         */
        @SuppressWarnings("resource")
        public long getTreeId() {
            final 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
         */
        @SuppressWarnings("resource")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 30.4K bytes
    - Viewed (0)
Back to top