public void ShouldNotAllowNullAction()
        {
            var builder = new StreamBuilder();
            IKStream <string, string> stream = builder.Stream <string, string>("topic");

            Assert.Throws <ArgumentNullException>(() => stream.Peek(null));
        }