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
ConstructorsConstructorDescriptionDeprecated.DeleteServiceInstanceBindingEventFlowRegistry(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 Fluxreactor.core.publisher.Flux<Void>Retrieve the error flows as a Fluxreactor.core.publisher.Flux<Void>Retrieve the initialization flows as a FluxMethods inherited from class org.springframework.cloud.servicebroker.service.events.EventFlowRegistry
addCompletionFlow, addErrorFlow, addInitializationFlow, getCompletionFlowsInternal, getErrorFlowsInternal, getInitializationFlowsInternal
-
Constructor Details
-
DeleteServiceInstanceBindingEventFlowRegistry
Deprecated.Construct a newDeleteServiceInstanceBindingEventFlowRegistry -
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:EventFlowRegistryRetrieve the initialization flows as a Flux- Specified by:
getInitializationFlowsin 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:EventFlowRegistryRetrieve the completion flows as a Flux- Specified by:
getCompletionFlowsin 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:EventFlowRegistryRetrieve the error flows as a Flux- Specified by:
getErrorFlowsin classEventFlowRegistry<DeleteServiceInstanceBindingInitializationFlow,DeleteServiceInstanceBindingCompletionFlow, DeleteServiceInstanceBindingErrorFlow, DeleteServiceInstanceBindingRequest, DeleteServiceInstanceBindingResponse> - Parameters:
request- the service broker requestt- the error- Returns:
- a Flux of error flows
-