Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for dispatchListenerEvents (0.14 sec)

  1. android/guava/src/com/google/common/util/concurrent/AbstractService.java

          } catch (Throwable startupFailure) {
            restoreInterruptIfIsInterruptedException(startupFailure);
            notifyFailed(startupFailure);
          } finally {
            monitor.leave();
            dispatchListenerEvents();
          }
        } else {
          throw new IllegalStateException("Service " + this + " has already been started");
        }
        return this;
      }
    
      @CanIgnoreReturnValue
      @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/AbstractService.java

          } catch (Throwable startupFailure) {
            restoreInterruptIfIsInterruptedException(startupFailure);
            notifyFailed(startupFailure);
          } finally {
            monitor.leave();
            dispatchListenerEvents();
          }
        } else {
          throw new IllegalStateException("Service " + this + " has already been started");
        }
        return this;
      }
    
      @CanIgnoreReturnValue
      @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

              enqueueStoppedEvent();
            }
          } finally {
            monitor.leave();
            // Run our executors outside of the lock
            dispatchListenerEvents();
          }
        }
    
        void enqueueStoppedEvent() {
          listeners.enqueue(STOPPED_EVENT);
        }
    
        void enqueueHealthyEvent() {
          listeners.enqueue(HEALTHY_EVENT);
        }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:51:36 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/ServiceManager.java

              enqueueStoppedEvent();
            }
          } finally {
            monitor.leave();
            // Run our executors outside of the lock
            dispatchListenerEvents();
          }
        }
    
        void enqueueStoppedEvent() {
          listeners.enqueue(STOPPED_EVENT);
        }
    
        void enqueueHealthyEvent() {
          listeners.enqueue(HEALTHY_EVENT);
        }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:51:36 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top