Sha256: e48eac47462780dae5450646f1ad38f41dc1aaa2aaef57bb8e42dcbcbbfe8191

Contents?: true

Size: 1.41 KB

Versions: 4

Compression:

Stored size: 1.41 KB

Contents

# frozen_string_literal: true
module Dynflow
  module Connectors
    class Abstract
      include Algebrick::TypeCheck
      include Algebrick::Matching

      def start_listening(world)
        raise NotImplementedError
      end

      def stop_receiving_new_work(_, timeout = nil)
        raise NotImplementedError
      end

      def stop_listening(world, timeout = nil)
        raise NotImplementedError
      end

      def terminate
        raise NotImplementedError
      end

      def send(envelope)
        raise NotImplementedError
      end

      # we need to pass the world, as the connector can be shared
      # between words: we need to know the one to send the message to
      def receive(world, envelope)
        Type! envelope, Dispatcher::Envelope
        Telemetry.with_instance { |t| t.increment_counter(:dynflow_connector_envelopes, 1, :world => world.id, :direction => 'incoming') }
        match(envelope.message,
              (on Dispatcher::Ping do
                 response_envelope = envelope.build_response_envelope(Dispatcher::Pong, world)
                 send(response_envelope)
               end),
              (on Dispatcher::Request do
                 world.executor_dispatcher.tell([:handle_request, envelope])
               end),
              (on Dispatcher::Response do
                 world.client_dispatcher.tell([:dispatch_response, envelope])
               end))
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
dynflow-1.4.3 lib/dynflow/connectors/abstract.rb
dynflow-1.4.2 lib/dynflow/connectors/abstract.rb
dynflow-1.4.1 lib/dynflow/connectors/abstract.rb
dynflow-1.4.0 lib/dynflow/connectors/abstract.rb