Class UnitOfWorkControllingCommandBusInterceptor
- java.lang.Object
-
- dk.cloudcreate.essentials.components.foundation.reactive.command.UnitOfWorkControllingCommandBusInterceptor
-
- All Implemented Interfaces:
dk.cloudcreate.essentials.reactive.command.interceptor.CommandBusInterceptor
public class UnitOfWorkControllingCommandBusInterceptor extends Object implements dk.cloudcreate.essentials.reactive.command.interceptor.CommandBusInterceptor
CommandBusInterceptorthat ensures that each Command is handled within aUnitOfWorkby using theUnitOfWorkFactory.withUnitOfWork(CheckedFunction)
-
-
Constructor Summary
Constructors Constructor Description UnitOfWorkControllingCommandBusInterceptor(UnitOfWorkFactory<? extends UnitOfWork> unitOfWorkFactory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectinterceptSend(Object command, dk.cloudcreate.essentials.reactive.command.interceptor.CommandBusInterceptorChain commandBusInterceptorChain)voidinterceptSendAndDontWait(Object command, dk.cloudcreate.essentials.reactive.command.interceptor.CommandBusInterceptorChain commandBusInterceptorChain)ObjectinterceptSendAsync(Object command, dk.cloudcreate.essentials.reactive.command.interceptor.CommandBusInterceptorChain commandBusInterceptorChain)
-
-
-
Constructor Detail
-
UnitOfWorkControllingCommandBusInterceptor
public UnitOfWorkControllingCommandBusInterceptor(UnitOfWorkFactory<? extends UnitOfWork> unitOfWorkFactory)
-
-
Method Detail
-
interceptSend
public Object interceptSend(Object command, dk.cloudcreate.essentials.reactive.command.interceptor.CommandBusInterceptorChain commandBusInterceptorChain)
- Specified by:
interceptSendin interfacedk.cloudcreate.essentials.reactive.command.interceptor.CommandBusInterceptor
-
interceptSendAsync
public Object interceptSendAsync(Object command, dk.cloudcreate.essentials.reactive.command.interceptor.CommandBusInterceptorChain commandBusInterceptorChain)
- Specified by:
interceptSendAsyncin interfacedk.cloudcreate.essentials.reactive.command.interceptor.CommandBusInterceptor
-
interceptSendAndDontWait
public void interceptSendAndDontWait(Object command, dk.cloudcreate.essentials.reactive.command.interceptor.CommandBusInterceptorChain commandBusInterceptorChain)
- Specified by:
interceptSendAndDontWaitin interfacedk.cloudcreate.essentials.reactive.command.interceptor.CommandBusInterceptor
-
-