use of com.nexblocks.authguard.emb.rxjava.RxPublisherFactory in project AuthGuard by AuthGuard.
the class MessageBusTest method setup.
@BeforeAll
void setup() {
final ObjectNode configNode = new ObjectNode(JsonNodeFactory.instance);
configNode.set("channels", new ArrayNode(JsonNodeFactory.instance).add("accounts").add("auth"));
final ConfigContext configContext = new JacksonConfigContext(configNode);
messageBus = new MessageBus(new RxPublisherFactory(), configContext);
}
Aggregations