##// END OF EJS Templates
added provided and configure methods to the fluent container configuration, added applyConfig method to the container
added provided and configure methods to the fluent container configuration, added applyConfig method to the container

File last commit:

r9:c1c00bfb5487 propose cancellat...
r142:be7edf08a115 v1.4.0-rc3 default
Show More
activate.puml
24 lines | 341 B | text/plain | TextLexer
@startuml
participant Component as a
participant Other as b
[-> a : activate(ct)
activate a
<-- a : promise
a -> a : onActivating(ct)
activate a
a -> b : doAsyncWork(ct)
deactivate a
deactivate a
activate b
[-> b : ct.cancel
b --> a : reject(Cancelled)
deactivate b
activate a
a -> a : setFailState()
[<-- a : reject(Cancelled)
@enduml