Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setNonPooled (0.19 sec)

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

         */
    
        public SmbNamedPipe ( String url, int pipeType, boolean unshared, CIFSContext tc ) throws MalformedURLException {
            super(url, tc);
            this.pipeType = pipeType;
            setNonPooled(unshared);
            if ( !getLocator().isIPC() ) {
                throw new MalformedURLException("Named pipes are only valid on IPC$");
            }
            this.fileLocator.updateType(TYPE_NAMED_PIPE);
        }
    
    
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeConnection.java

         * otherwise the connection will be disconnected once the usage drops to zero.
         * 
         * @param np
         *            whether to use an exclusive connection
         */
        void setNonPooled ( boolean np ) {
            this.nonPooled = np;
        }
    
    
        /**
         * @return the currently connected tid
         */
        @SuppressWarnings ( "resource" )
        public long getTreeId () {
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

            return name;
        }
    
    
        /**
         * @param nonPooled
         *            whether this file will use an exclusive connection
         */
        protected void setNonPooled ( boolean nonPooled ) {
            this.treeConnection.setNonPooled(nonPooled);
        }
    
    
        /**
         * @return the transportContext
         */
        @Deprecated
        public CIFSContext getTransportContext () {
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
Back to top