State Change Events question
See original GitHub issueIs there a specific reason the ICircuitBreakerEvents
interface isn’t used or implemented anywhere?
I was thinking about adding support for the state change events to CircuitBreaker
, but wanted to see why they weren’t there first.
Thank you.
Issue Analytics
- State:
- Created 6 years ago
- Comments:7 (5 by maintainers)
Top Results From Across the Web
RTCIceTransport: statechange event - Web APIs | MDN
A statechange event occurs when the RTCIceTransport changes state. The state can be used to determine how far through the process of ...
Read more >MIDIPort: statechange event - Web APIs | MDN
The statechange event of the MIDIPort interface is fired when a port changes from open to closed, or closed to open.
Read more >events can cause state change? - solidity
This answer might clarify it alongside this one. In essence, transactions receipts (containing the logs) are used to form the Transaction ...
Read more >microservices - Events for entity state changes
The problem I run into is when I have consumers that care when any of a set of attributes change. I could have...
Read more >c# - TChannel state change events?
The instance you get back from CreateChannel implements TChannel but also IClientChannel which has state changed events like Closed ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The easiest way is to inject some logic into
try catch
block 😄 But using events or an interface is indeed a more reliable way to do it. Another option is to exposeICircuitBreakerSwitch
via construction or a builder class. (and other interfaces too ieICircuitBreakerInvoker
,ICircuitBreakerState
)@LBreedlove I’ve just published v0.6.0