如何在移动应用上发生事件时将消息发送到Web应用程序。两者都使用相同的后端服务器。我正在使用WebSocket,我能够触发消息。这是正确的方法吗?这是我的代码。
webscoket处理程序
public class MyHandler extends TextWebSocketHandler {
@Autowired
private CommonUtil util;
@Override
public void handleTextMessage(WebSocketSession session, TextMessage message) throws IOException, InterruptedException {
while(true){
Iterator<String> it1 = util.membership_attendance_list.keySet().iterator();
while (it1.hasNext()) {
String key = it1.next();
String membershipId = util.membership_attendance_list.get(key);
session.sendMessage(new TextMessage(membershipId));
util.membership_attendance_list.remove(membershipId);
}
}
}
}
应用程序将与此API进行通信
public class AttendanceController{
@Autowired
private CommonUtil util;
@RequestMapping(value = "/attendance", method = RequestMethod.POST, headers = "Accept=application/json")
public Response saveAttendance(@Valid @RequestBody final AttendanceDto dto)){
final Response response = new Response();
// implimentation logic goes here
util.membership_attendance_list.put(eventParticipantMap.getMemberShipId(),eventParticipantMap.getMemberShipId());
return response;
}
}
是否可以使用听众来表达它?
答案 0 :(得分:0)
因此,如果我们谈论基于移动应用程序的事件。我将给出一个基于android的示例,但是可以在其他平台上找到类似的概念。对于每种类型的事件,都有某些具有回调方法的事件侦听器。通常,您需要重写侦听器接口或抽象类的抽象回调方法,并在其中注册您的方法行为,以使每次发生的事件都进行HTTP POST / GET / SOCKET_SEND。
我熟悉基于Android的应用程序。所以这是一个例子:
事件监听器和回调方法
公共类EventExampleActivity扩展了活动{
@Override
protected void onStart()
{
super.onStart();
Button button = (Button)findViewById(R.id.myButton);
//for listening simple click events
button.setOnClickListener(
//registering callback method behaviour here.
new Button.OnClickListener() {
public void onClick(View v) {
// the data related to the events can be fetched
// in the v object
// insert http get/post/socket_send logic here
}
}
);
//for listening long click events
button.setOnLongClickListener(
new Button.OnLongClickListener() {
//registering callback method behaviour here.
public boolean onLongClick(View v) {
// the data related to the events can be fetched
// in the v object
// insert http get/post/socket_send logic here
return true;
}
}
);
}
}
希望有帮助。
有关事件侦听器的更多信息。 https://guides.codepath.com/android/Basic-Event-Listeners https://www.tutlane.com/tutorial/android/android-input-events-event-listeners-event-handling