This pub-sub library NYBus(RxBus) uses RxJava(RxJava2) for creating RxBus(RxBus2). You must have used EventBus. NYBus is very similar to the EventBus. NYBus is implemented using RxJava(RxJava2).
- NYBus is used for posting any type of event to subscribe class in Android and Java applications.
- NYBus also support channel to avoid the problem of event getting received at undesirable places.
- NYBus also support thread customization(thread in which the event should be posted).
- NYBus is built on RxJava(RxJava2).
compile 'com.mindorks.nybus:nybus-android:1.0.0'
compile 'com.mindorks.nybus:nybus-java:1.0.0'
gradlew connectedAndroidTest test
NYBus.get().register(this);
NYBus.get().unregister(this);
NYBus.get().post(event);
@Subscribe
public void onEvent(Event event) {
}
NYBus.get().register(this, Channel.ONE);
NYBus.get().register(this, Channel.ONE, Channel.TWO);
NYBus.get().unregister(this, Channel.ONE);
NYBus.get().unregister(this, Channel.ONE, Channel.TWO);
NYBus.get().post(event, Channel.ONE);
@Subscribe(channelId = Channel.ONE)
public void onEvent(Event event) {
}
@Subscribe(channelId = {Channel.ONE, Channel.TWO})
public void onEvent(Event event) {
}
@Subscribe(threadType = NYThread.MAIN)
public void onEvent(Event event) {
}
@Subscribe(channelId = Channel.ONE, threadType = NYThread.IO)
public void onEvent(Event event) {
}
NYBus.get().enableLogging();
It will log: D/NYBus: No target found for the eventclass com.mindorks.Event
Check out Mindorks awesome open source projects here
Copyright (C) 2017 MINDORKS NEXTGEN PRIVATE LIMITED
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
All pull requests are welcome, make sure to follow the contribution guidelines when you submit pull request.