All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.haoxuer.discover.plug.data.service.PushService Maven / Gradle / Ivy

There is a newer version: 3.3.18-20230117
Show newest version
package com.haoxuer.discover.plug.data.service;

import com.haoxuer.discover.plug.data.vo.PushBack;
import java.util.Map;

/**
 * 消息推送服务
 */
public interface PushService {
  
  PushBack pushAll(String msg, Map keys);
  
  PushBack pushToSingleDevice(String chanel, String msg, Map keys);
  
  PushBack pushToTag(String tag, String msg, Map keys);
  
  
  PushBack pushToChannels(String[] chanels, String msg, Map keys);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy