Replies: 2 comments
-
@jvalkeal would you be able to guide what is wrong here? |
Beta Was this translation helpful? Give feedback.
0 replies
-
o.s.statemachine.state.AbstractState - Adding new scheduled action with subscription=reactor.core.publisher.MonoSubscribeOn$SubscribeOnSubscriber@373f2877 is the code in AbstractState that is causing it to go on separate thread. when does this happen? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
stateMachine.sendEvent(Mono.just(MessageBuilder
.withPayload(pemsEvent.getEventType())
.setHeader(Key.ADDRESS.name(), address)
.setHeader(Key.PAY_LOAD.name(), pemsEvent.getPayload()).build()))
.subscribeOn(Schedulers.immediate(), false).subscribe();
Beta Was this translation helpful? Give feedback.
All reactions