cn.ipokerface.aps.notification.NotificationFuture Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apple-pns-java Show documentation
Show all versions of apple-pns-java Show documentation
Apple Push Service Java server..
The newest version!
package cn.ipokerface.aps.notification;
import java.util.concurrent.CompletableFuture;
/**
* Created by PokerFace
* Create Date 2020-08-24.
* Email: [email protected]
* Version 1.0.0
*
* Description:
*/
public class NotificationFuture
extends CompletableFuture {
private final P notification;
public NotificationFuture(final P notification) {
super();
this.notification = notification;
}
/**
* Returns the push notification to which the operation represented by this future applies.
*
* @return the push notification to which the operation represented by this future applies
*/
public P getNotification() {
return this.notification;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy