Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为了加快发送大量 Apple 推送通知 (APN),建议并行处理多个对 APNs(APN 服务器)的调用 - 最多 20 个并发调用。
C# 跨平台推送库PushSharp是否默认为 iOS 通知执行此操作?如果没有,我该如何配置它呢?
是的,它确实。搜索 CheckScale 调用,你会看到当发送通知的时间过长时,PushService 会打开更多的 PushChannel,每个都运行在不同的 WorkerTask 中
查看 15 或 20 的代码,我记得,这是定义最大 PushChannel 限制的常量,它们可以一起工作。