update
This commit is contained in:
parent
2a06b2e866
commit
6daf1025f5
|
|
@ -229,6 +229,11 @@ public class GetuiPushUtil implements IPush {
|
|||
sendAndroidByAlias(alias, notificationTitle, msgContent, extrasParam);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void sendAllPlatByAliasExt(List<String> alias, String notificationTitle, String msgContent, String extrasParam) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void sendIOSAll(String notificationTitle, String msgContent, String extrasParam) {
|
||||
init();
|
||||
|
|
|
|||
|
|
@ -34,6 +34,16 @@ public interface IPush {
|
|||
*/
|
||||
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
|
||||
*
|
||||
|
|
|
|||
|
|
@ -96,6 +96,11 @@ public class JGPushUtil implements IPush {
|
|||
sendAndResultHandle(pushPayload);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void sendAllPlatByAliasExt(List<String> alias, String notificationTitle, String msgContent, String extrasParam) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void sendIOSAll(String notificationTitle, String msgContent, String extrasParam) {
|
||||
PushPayload pushPayload = getPayLoadBuilder(notificationTitle, msgContent, extrasParam)
|
||||
|
|
|
|||
|
|
@ -119,6 +119,11 @@ public class MobPushUtil implements IPush {
|
|||
sendAndResultHandle(push);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void sendAllPlatByAliasExt(List<String> alias, String notificationTitle, String msgContent, String extrasParam) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void sendIOSAll(String notificationTitle, String msgContent, String extrasParam) {
|
||||
PushNotify notify = generalPushNotify(notificationTitle, msgContent, extrasParam);
|
||||
|
|
|
|||
Loading…
Reference in New Issue