001package com.pusher.client.channel;
002
003/**
004 * Interface to listen to private encrypted channel events.
005 * Note: This needs to extend the PrivateChannelEventListener because in the
006 * ChannelManager handleAuthenticationFailure we assume it's safe to cast to a
007 * PrivateChannelEventListener
008 */
009public interface PrivateEncryptedChannelEventListener extends PrivateChannelEventListener {
010    void onDecryptionFailure(String event, String reason);
011}