Class DeleteServiceInstanceBindingEventFlowRegistry
java.lang.Object
org.springframework.cloud.servicebroker.service.events.EventFlowRegistry<DeleteServiceInstanceBindingInitializationFlow,DeleteServiceInstanceBindingCompletionFlow,DeleteServiceInstanceBindingErrorFlow,DeleteServiceInstanceBindingRequest,DeleteServiceInstanceBindingResponse>
org.springframework.cloud.servicebroker.service.events.DeleteServiceInstanceBindingEventFlowRegistry
public class DeleteServiceInstanceBindingEventFlowRegistry
extends EventFlowRegistry<DeleteServiceInstanceBindingInitializationFlow,DeleteServiceInstanceBindingCompletionFlow,DeleteServiceInstanceBindingErrorFlow,DeleteServiceInstanceBindingRequest,DeleteServiceInstanceBindingResponse>
Event flow registry for delete service instance binding requests.
- Author:
- Roy Clarkson
-
Constructor Summary
ConstructorDescriptionDeleteServiceInstanceBindingEventFlowRegistry
(List<DeleteServiceInstanceBindingInitializationFlow> initializationFlows, List<DeleteServiceInstanceBindingCompletionFlow> completionFlows, List<DeleteServiceInstanceBindingErrorFlow> errorFlows) Construct a newDeleteServiceInstanceBindingEventFlowRegistry
. -
Method Summary
Modifier and TypeMethodDescriptionreactor.core.publisher.Flux<Void>
getCompletionFlows
(DeleteServiceInstanceBindingRequest request, DeleteServiceInstanceBindingResponse response) Retrieve the completion flows as a Flux.reactor.core.publisher.Flux<Void>
Retrieve the error flows as a Flux.reactor.core.publisher.Flux<Void>
Retrieve the initialization flows as a Flux.Methods inherited from class org.springframework.cloud.servicebroker.service.events.EventFlowRegistry
addCompletionFlow, addErrorFlow, addInitializationFlow, getCompletionFlowsInternal, getErrorFlowsInternal, getInitializationFlowsInternal
-
Constructor Details
-
DeleteServiceInstanceBindingEventFlowRegistry
public DeleteServiceInstanceBindingEventFlowRegistry(List<DeleteServiceInstanceBindingInitializationFlow> initializationFlows, List<DeleteServiceInstanceBindingCompletionFlow> completionFlows, List<DeleteServiceInstanceBindingErrorFlow> errorFlows) Construct a newDeleteServiceInstanceBindingEventFlowRegistry
.- Parameters:
initializationFlows
- the initialization flowscompletionFlows
- the completion flowserrorFlows
- the error flows
-
-
Method Details
-
getInitializationFlows
public reactor.core.publisher.Flux<Void> getInitializationFlows(DeleteServiceInstanceBindingRequest request) Description copied from class:EventFlowRegistry
Retrieve the initialization flows as a Flux.- Specified by:
getInitializationFlows
in classEventFlowRegistry<DeleteServiceInstanceBindingInitializationFlow,
DeleteServiceInstanceBindingCompletionFlow, DeleteServiceInstanceBindingErrorFlow, DeleteServiceInstanceBindingRequest, DeleteServiceInstanceBindingResponse> - Parameters:
request
- the service broker request- Returns:
- a Flux of initialization flows
-
getCompletionFlows
public reactor.core.publisher.Flux<Void> getCompletionFlows(DeleteServiceInstanceBindingRequest request, DeleteServiceInstanceBindingResponse response) Description copied from class:EventFlowRegistry
Retrieve the completion flows as a Flux.- Specified by:
getCompletionFlows
in classEventFlowRegistry<DeleteServiceInstanceBindingInitializationFlow,
DeleteServiceInstanceBindingCompletionFlow, DeleteServiceInstanceBindingErrorFlow, DeleteServiceInstanceBindingRequest, DeleteServiceInstanceBindingResponse> - Parameters:
request
- the service broker requestresponse
- the service broker response- Returns:
- a Flux of completion flows
-
getErrorFlows
public reactor.core.publisher.Flux<Void> getErrorFlows(DeleteServiceInstanceBindingRequest request, Throwable t) Description copied from class:EventFlowRegistry
Retrieve the error flows as a Flux.- Specified by:
getErrorFlows
in classEventFlowRegistry<DeleteServiceInstanceBindingInitializationFlow,
DeleteServiceInstanceBindingCompletionFlow, DeleteServiceInstanceBindingErrorFlow, DeleteServiceInstanceBindingRequest, DeleteServiceInstanceBindingResponse> - Parameters:
request
- the service broker requestt
- the error- Returns:
- a Flux of error flows
-