-
public interface CTPushProviderDefines a push provider.
-
-
Method Summary
Modifier and Type Method Description abstract PushTypegetPushType()Returns the delivery type. abstract booleanisAvailable()If the underlying push provider is currently available. abstract booleanisSupported()If the underlying push provider is supported on the device. abstract intminSDKSupportVersionCode()The minimum SDK version code to support the provider. abstract voidrequestToken()Requests the push registration token. -
-
Method Detail
-
getPushType
@NonNull() abstract PushType getPushType()
Returns the delivery type.
-
isAvailable
abstract boolean isAvailable()
If the underlying push provider is currently available.
-
isSupported
abstract boolean isSupported()
If the underlying push provider is supported on the device.
-
minSDKSupportVersionCode
abstract int minSDKSupportVersionCode()
The minimum SDK version code to support the provider.
-
requestToken
abstract void requestToken()
Requests the push registration token.
-
-
-
-