Java android EventBus 检测服务器是否发送到 phone 消息
Java android EventBus detect if server is send to phone message
我想使用 EventBus 来检测服务器是否发送了一些东西
我注册了一个事件总线:
App.getBus().register(this);
public static App getInstance() {
return instance;
}
public static EventBus getBus() {
return EventBus.getDefault();
}
但我不知道如何检测服务器是否发送了一些东西
I don't have idea how I can detect if server is send something
EventBus 用于在应用程序中发送事件,它不能用于通过互联网从服务器向客户端发送消息。可以通过FCM by google.
实现从服务器向客户端发送消息
我想使用 EventBus 来检测服务器是否发送了一些东西
我注册了一个事件总线:
App.getBus().register(this);
public static App getInstance() {
return instance;
}
public static EventBus getBus() {
return EventBus.getDefault();
}
但我不知道如何检测服务器是否发送了一些东西
I don't have idea how I can detect if server is send something
EventBus 用于在应用程序中发送事件,它不能用于通过互联网从服务器向客户端发送消息。可以通过FCM by google.
实现从服务器向客户端发送消息