Sha256: 41486a3028a0a0d3e639cfd28e15aa972d5412e3211a42e7371a687cd4031ee3

Contents?: true

Size: 896 Bytes

Versions: 317

Compression:

Stored size: 896 Bytes

Contents

class Chef
  module EventDispatch
    class EventsOutputStream
      # This is a fake stream that connects to events.
      #
      # == Arguments
      # events: the EventDispatch object to send data to (run_context.events)
      # options is a hash with these possible options:
      # - name: a string that identifies the stream to the user. Preferably short.

      def initialize(events, options = {})
        @events = events
        @options = options
        events.stream_opened(self, options)
      end

      attr_reader :options
      attr_reader :events

      def print(str)
        events.stream_output(self, str, options)
      end

      def <<(str)
        events.stream_output(self, str, options)
      end

      def write(str)
        events.stream_output(self, str, options)
      end

      def close
        events.stream_closed(self, options)
      end
    end
  end
end

Version data entries

317 entries across 317 versions & 1 rubygems

Version Path
chef-16.16.13 lib/chef/event_dispatch/events_output_stream.rb
chef-17.6.18-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-17.6.18 lib/chef/event_dispatch/events_output_stream.rb
chef-17.6.15-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-17.6.15 lib/chef/event_dispatch/events_output_stream.rb
chef-16.16.7-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-16.16.7 lib/chef/event_dispatch/events_output_stream.rb
chef-17.5.22-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-17.5.22 lib/chef/event_dispatch/events_output_stream.rb
chef-16.15.22-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-16.15.22 lib/chef/event_dispatch/events_output_stream.rb
chef-17.4.38-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-17.4.38 lib/chef/event_dispatch/events_output_stream.rb
chef-17.4.25-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-17.4.25 lib/chef/event_dispatch/events_output_stream.rb
chef-16.14.1-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-16.14.1 lib/chef/event_dispatch/events_output_stream.rb
chef-17.3.48-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-17.3.48 lib/chef/event_dispatch/events_output_stream.rb
chef-17.2.29-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb