Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for notifyAll (0.16 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbSession.java

                } while (state != 0);
            } catch (SmbException se) {
                logoff(true);
                connectionState = 0;
                throw se;
            } finally {
                transport.notifyAll();
            }
    }
        }
        void logoff( boolean inError ) {
    synchronized (transport()) {
    
            if (connectionState != 2) // not-connected
                return;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 18.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NameServiceClientImpl.java

            return obj;
        }
    
    
        private void updateLookupTable ( Name name ) {
            synchronized ( this.inFlightLookups ) {
                this.inFlightLookups.remove(name);
                this.inFlightLookups.notifyAll();
            }
        }
    
    
        void cacheAddress ( Name hostName, NbtAddress addr ) {
            if ( this.transportContext.getConfig().getNetbiosCachePolicy() == 0 ) {
                return;
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

            synchronized ( this ) {
                notifyAll();
            }
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.util.transport.Response#exception(java.lang.Exception)
         */
        @Override
        public void exception ( Exception e ) {
            this.exception = e;
            synchronized ( this ) {
                notifyAll();
            }
        }
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 32.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbTreeImpl.java

                        finally {
                            this.connectionState.set(0);
                        }
                        throw se;
                    }
                    finally {
                        transport.notifyAll();
                    }
                }
            }
        }
    
    
        /**
         * @param transport
         * @param sess
         * @param response
         * @throws IOException
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/util/transport/Transport.java

                                for ( Response response : this.response_map.values() ) {
                                    synchronized ( response ) {
                                        response.notifyAll();
                                    }
                                }
                                continue;
                            }
    
                            if ( log.isDebugEnabled() ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/netbios/NbtAddress.java

            }
    
            return obj;
        }
        private static void updateLookupTable( Name name ) {
            synchronized( LOOKUP_TABLE ) {
                LOOKUP_TABLE.remove( name );
                LOOKUP_TABLE.notifyAll();
            }
        }
    
    /** 
     * Retrieves the local host address.
     *
     * @throws UnknownHostException This is not likely as the IP returned
     *                    by <code>InetAddress</code> should be available
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 30.1K bytes
    - Viewed (0)
Back to top