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

cn.ipokerface.aps.notification.NotificationFuture Maven / Gradle / Ivy

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