Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for enqueueFailedEvent (0.07 sec)

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

            case RUNNING:
            case STARTING:
            case STOPPING:
              snapshot = new StateSnapshot(FAILED, false, cause);
              enqueueFailedEvent(previous, cause);
              break;
            case FAILED:
              // Do nothing
              break;
          }
        } finally {
          monitor.leave();
          dispatchListenerEvents();
        }
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractService.java

            case RUNNING:
            case STARTING:
            case STOPPING:
              snapshot = new StateSnapshot(FAILED, false, cause);
              enqueueFailedEvent(previous, cause);
              break;
            case FAILED:
              // Do nothing
              break;
          }
        } finally {
          monitor.leave();
          dispatchListenerEvents();
        }
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

              }
            }
            // Queue our listeners
    
            // Did a service fail?
            if (to == FAILED) {
              enqueueFailedEvent(service);
            }
    
            if (states.count(RUNNING) == numberOfServices) {
              // This means that the manager is currently healthy. N.B. If other threads call isHealthy
    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

              }
            }
            // Queue our listeners
    
            // Did a service fail?
            if (to == FAILED) {
              enqueueFailedEvent(service);
            }
    
            if (states.count(RUNNING) == numberOfServices) {
              // This means that the manager is currently healthy. N.B. If other threads call isHealthy
    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