TryHandle - InMemoryBus

        public bool TryHandle(Message message)
        {
            var msg = message as T;
            if (msg != null)
            {
                _handler.Handle(msg);
                return true;
            }
            return false;
        }


The result of TryHandle is never consumed...

Could you clarify?

What is the purpose of TryHandle having a return value which is never used within the EventStore code?

I must miss something…

Oh from having written the code it was meaningless future planning :slight_smile: