Notification通知
更新时间:2022-09-22
通知功能可以在音视频转码任务状态转换时主动向开发者服务器推送消息。
创建通知
如果需要创建通知可以参考如下代码:
public void createNotification(MediaClient client, String name, String endpoint) {
client.createNotification(name, endpoint);
}
查询指定通知
如果需要查询已创建的通知,可以参考如下代码:
public void getNotification(MediaClient client, String name) {
GetNotificationResponse notification = client.getNotification(name);
System.out.println(notification.getName());
System.out.println(notification.getEndpoint());
}
查询当前用户通知
如果需要查询出本用户所创建的全部通知,可以参考如下代码:
public void ListNotification(MediaClient client) {
List<Notification> notifications = client.listNotification().getNotifications();
for (Notification notifciation : notifications) {
System.out.println(notifciation.getName());
System.out.println(notifciation.getEndpoint());
}
}
删除通知
如果需要删除某个通知,可以参考如下代码:
public void deleteNotification(MediaClient client, String name) {
client.deleteNotification(name);
}