inotify/Inotify/ThridPart/CorePush/Interfaces/IApnSender.cs
2021-04-06 20:05:06 +08:00

18 lines
461 B
C#

using CorePush.Apple;
using System.Threading;
using System.Threading.Tasks;
namespace CorePush.Interfaces
{
public interface IApnSender
{
Task<ApnsResponse> SendAsync(
object notification,
string deviceToken,
string apnsId = null,
int apnsExpiration = 0,
int apnsPriority = 10,
bool isBackground = false,
CancellationToken cancellationToken = default);
}
}