Package com.pusher.client.channel
Interface PrivateChannelEventListener
-
- All Superinterfaces:
ChannelEventListener,SubscriptionEventListener
- All Known Subinterfaces:
PresenceChannelEventListener,PrivateEncryptedChannelEventListener
public interface PrivateChannelEventListener extends ChannelEventListener
Interface to listen to private channel events.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonAuthenticationFailure(java.lang.String message, java.lang.Exception e)Called when an attempt to authenticate a private channel fails.-
Methods inherited from interface com.pusher.client.channel.ChannelEventListener
onSubscriptionSucceeded
-
Methods inherited from interface com.pusher.client.channel.SubscriptionEventListener
onError, onEvent
-
-
-
-
Method Detail
-
onAuthenticationFailure
void onAuthenticationFailure(java.lang.String message, java.lang.Exception e)
Called when an attempt to authenticate a private channel fails.- Parameters:
message- A description of the problem.e- An associated exception, if available.
-
-