UNPKG

node-circuit-breaker

Version:

Circuit Breaker: Decorators and tools that can easily apply the Circuit Breaker pattern.

16 lines (15 loc) 235 B
export declare enum CircuitBreakerScope { /** * global */ DEFAULT = 0, /** * per instance */ INSTANCE = 1 } export declare enum CircuitBreakerState { Closed = 0, Open = 1, HalfOpen = 2 }