Akka.Persistence.Sql.Common.Journal.SqlJournal.ReceivePluginInternal C# (CSharp) Method

ReceivePluginInternal() protected method

protected ReceivePluginInternal ( object message ) : bool
message object
return bool
        protected override bool ReceivePluginInternal(object message)
        {
            if (message is Query)
            {
                HandleEventQuery(message as Query);
                return true;
            }

            return false;
        }