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-17.2.29 lib/chef/event_dispatch/events_output_stream.rb
chef-17.1.35-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-17.1.35 lib/chef/event_dispatch/events_output_stream.rb
chef-17.0.242-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-17.0.242 lib/chef/event_dispatch/events_output_stream.rb
chef-15.17.4-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-15.17.4 lib/chef/event_dispatch/events_output_stream.rb
chef-16.13.16-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-16.13.16 lib/chef/event_dispatch/events_output_stream.rb
chef-16.12.3-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-16.12.3 lib/chef/event_dispatch/events_output_stream.rb
chef-15.16.7-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-15.16.7 lib/chef/event_dispatch/events_output_stream.rb
chef-15.16.4-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-15.16.4 lib/chef/event_dispatch/events_output_stream.rb
chef-15.16.2-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-15.16.2 lib/chef/event_dispatch/events_output_stream.rb
chef-16.11.7-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb
chef-16.11.7 lib/chef/event_dispatch/events_output_stream.rb
chef-16.10.17-universal-mingw32 lib/chef/event_dispatch/events_output_stream.rb