push: function(item) {
            this.consumers.forEach(function(consumer) {
                consumer.accept(item);
            });
        },