Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IPushTokenRegistrar.cs
1using System.Threading;
2using System.Threading.Tasks;
4
6{
10 public interface IPushTokenRegistrar
11 {
19 Task<bool> ReportTokenAsync(TokenInformation TokenInformation, bool ForceReport, CancellationToken CancellationToken);
20 }
21}
Contains information about a push notification token.
Handles persistence and reporting of push notification tokens.
Task< bool > ReportTokenAsync(TokenInformation TokenInformation, bool ForceReport, CancellationToken CancellationToken)
Reports a push token to the broker if needed, applying deduplication and force rules.