class EventStoreClient::HTTP::Commands::Command
Attributes
connection[R]
Public Class Methods
inherited(klass)
click to toggle source
Calls superclass method
# File lib/event_store_client/adapters/http/commands/command.rb, line 10 def self.inherited(klass) super klass.class_eval do include Dry::Monads[:result] end end
new(connection)
click to toggle source
# File lib/event_store_client/adapters/http/commands/command.rb, line 21 def initialize(connection) @connection = connection end