update
This commit is contained in:
@@ -229,6 +229,11 @@ public class GetuiPushUtil implements IPush {
|
|||||||
sendAndroidByAlias(alias, notificationTitle, msgContent, extrasParam);
|
sendAndroidByAlias(alias, notificationTitle, msgContent, extrasParam);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void sendAllPlatByAliasExt(List<String> alias, String notificationTitle, String msgContent, String extrasParam) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void sendIOSAll(String notificationTitle, String msgContent, String extrasParam) {
|
public void sendIOSAll(String notificationTitle, String msgContent, String extrasParam) {
|
||||||
init();
|
init();
|
||||||
|
|||||||
@@ -34,6 +34,16 @@ public interface IPush {
|
|||||||
*/
|
*/
|
||||||
void sendAllPlatByAlias(List<String> alias, String notificationTitle, String msgContent, String extrasParam);
|
void sendAllPlatByAlias(List<String> alias, String notificationTitle, String msgContent, String extrasParam);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 推送到全部,android & iOS
|
||||||
|
*
|
||||||
|
* @param alias id数组
|
||||||
|
* @param notificationTitle 推送通知标题
|
||||||
|
* @param msgContent 推送内容
|
||||||
|
* @param extrasParam 附加参数
|
||||||
|
*/
|
||||||
|
void sendAllPlatByAliasExt(List<String> alias, String notificationTitle, String msgContent, String extrasParam);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 推送到全部iphone
|
* 推送到全部iphone
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -96,6 +96,11 @@ public class JGPushUtil implements IPush {
|
|||||||
sendAndResultHandle(pushPayload);
|
sendAndResultHandle(pushPayload);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void sendAllPlatByAliasExt(List<String> alias, String notificationTitle, String msgContent, String extrasParam) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void sendIOSAll(String notificationTitle, String msgContent, String extrasParam) {
|
public void sendIOSAll(String notificationTitle, String msgContent, String extrasParam) {
|
||||||
PushPayload pushPayload = getPayLoadBuilder(notificationTitle, msgContent, extrasParam)
|
PushPayload pushPayload = getPayLoadBuilder(notificationTitle, msgContent, extrasParam)
|
||||||
|
|||||||
@@ -119,6 +119,11 @@ public class MobPushUtil implements IPush {
|
|||||||
sendAndResultHandle(push);
|
sendAndResultHandle(push);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void sendAllPlatByAliasExt(List<String> alias, String notificationTitle, String msgContent, String extrasParam) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void sendIOSAll(String notificationTitle, String msgContent, String extrasParam) {
|
public void sendIOSAll(String notificationTitle, String msgContent, String extrasParam) {
|
||||||
PushNotify notify = generalPushNotify(notificationTitle, msgContent, extrasParam);
|
PushNotify notify = generalPushNotify(notificationTitle, msgContent, extrasParam);
|
||||||
|
|||||||
Reference in New Issue
Block a user