Kind of an interceptor that - before passing messages on - stores them on stable storage. This allows clients that reconnect after a certain time, to request older messages to be replayed. Could be used in conjunction with PullPushConverter: when no client is connected, whenever a message is received, it will be stored. When a client connects, all stored messages are pushed to the client and subsequently purged from stable storage.
Not yet implemented