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-12.13.30-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-12.12.15-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-12.12.15 lib/chef/event_dispatch/events_output_stream.rb
chef-12.12.13 lib/chef/event_dispatch/events_output_stream.rb
chef-12.12.13-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-12.11.18-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-12.11.18 lib/chef/event_dispatch/events_output_stream.rb
chef-12.10.24 lib/chef/event_dispatch/events_output_stream.rb
chef-12.10.24-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-12.9.41 lib/chef/event_dispatch/events_output_stream.rb
chef-12.9.41-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-12.9.38 lib/chef/event_dispatch/events_output_stream.rb
chef-12.9.38-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-12.7.2 lib/chef/event_dispatch/events_output_stream.rb
chef-12.7.2-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-12.6.0 lib/chef/event_dispatch/events_output_stream.rb
chef-12.6.0-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb