Interface | Description |
---|---|
BaseRedSynchronizer.Command |
A function to be invoked with expected number of parameters,
and a
BaseRedSynchronizer.PendingMarker to mark the completion of the execution |
BaseRedSynchronizer.Command.Command0 |
A command of 0 result parameters
|
BaseRedSynchronizer.Command.Command1<T0> |
A command of 1 result parameter
|
BaseRedSynchronizer.Command.Command10<T0,T1,T2,T3,T4,T5,T6,T7,T8,T9> |
A command of 10 result parameter
|
BaseRedSynchronizer.Command.Command2<T0,T1> |
A command of 2 result parameter
|
BaseRedSynchronizer.Command.Command3<T0,T1,T2> |
A command of 3 result parameter
|
BaseRedSynchronizer.Command.Command4<T0,T1,T2,T3> |
A command of 4 result parameter
|
BaseRedSynchronizer.Command.Command5<T0,T1,T2,T3,T4> |
A command of 5 result parameter
|
BaseRedSynchronizer.Command.Command6<T0,T1,T2,T3,T4,T5> |
A command of 6 result parameter
|
BaseRedSynchronizer.Command.Command7<T0,T1,T2,T3,T4,T5,T6> |
A command of 7 result parameter
|
BaseRedSynchronizer.Command.Command8<T0,T1,T2,T3,T4,T5,T6,T7> |
A command of 8 result parameter
|
BaseRedSynchronizer.Command.Command9<T0,T1,T2,T3,T4,T5,T6,T7,T8> |
A command of 9 result parameter
|
BaseRedSynchronizer.Command.CommandN |
A command of N result parameter
|
BaseRedSynchronizer.Function |
A function to be invoked with expected number of parameters,
and return the result wrapper
|
BaseRedSynchronizer.Function.Function0<WRAPPER> |
A function of 0 result parameters
|
BaseRedSynchronizer.Function.Function1<WRAPPER,T0> |
A function of 1 result parameter
|
BaseRedSynchronizer.Function.Function10<WRAPPER,T0,T1,T2,T3,T4,T5,T6,T7,T8,T9> |
A function of 10 result parameters
|
BaseRedSynchronizer.Function.Function2<WRAPPER,T0,T1> |
A function of 2 result parameters
|
BaseRedSynchronizer.Function.Function3<WRAPPER,T0,T1,T2> |
A function of 3 result parameters
|
BaseRedSynchronizer.Function.Function4<WRAPPER,T0,T1,T2,T3> |
A function of 4 result parameters
|
BaseRedSynchronizer.Function.Function5<WRAPPER,T0,T1,T2,T3,T4> |
A function of 5 result parameters
|
BaseRedSynchronizer.Function.Function6<WRAPPER,T0,T1,T2,T3,T4,T5> |
A function of 6 result parameters
|
BaseRedSynchronizer.Function.Function7<WRAPPER,T0,T1,T2,T3,T4,T5,T6> |
A function of 7 result parameters
|
BaseRedSynchronizer.Function.Function8<WRAPPER,T0,T1,T2,T3,T4,T5,T6,T7> |
A function of 8 result parameters
|
BaseRedSynchronizer.Function.Function9<WRAPPER,T0,T1,T2,T3,T4,T5,T6,T7,T8> |
A function of 9 result parameters
|
BaseRedSynchronizer.Function.FunctionN<WRAPPER> |
A function of N result parameters
|
Exception | Description |
---|---|
PreconditionFailedException |
Represents the indication error that will be thrown in case an
execution precondition failed.
|
PreconditionFailedException.Failure |
Will be thrown in case an execution was expecting a precondition to
fail, but succeeded.
|
PreconditionFailedException.Success |
Will be thrown in case an execution was expecting a precondition to
succeed, but failed.
|
Copyright © 2017. All rights reserved.