Module: EventStoreClient

Defined in:
lib/event_store_client.rb,
lib/event_store_client/event.rb,
lib/event_store_client/types.rb,
lib/event_store_client/broker.rb,
lib/event_store_client/client.rb,
lib/event_store_client/mapper.rb,
lib/event_store_client/version.rb,
lib/event_store_client/endpoint.rb,
lib/event_store_client/connection.rb,
lib/event_store_client/subscription.rb,
lib/event_store_client/configuration.rb,
lib/event_store_client/store_adapter.rb,
lib/event_store_client/subscriptions.rb,
lib/event_store_client/data_decryptor.rb,
lib/event_store_client/data_encryptor.rb,
lib/event_store_client/mapper/default.rb,
lib/event_store_client/mapper/encrypted.rb,
lib/event_store_client/deserialized_event.rb,
lib/event_store_client/encryption_metadata.rb,
lib/event_store_client/store_adapter/in_memory.rb,
lib/event_store_client/store_adapter/api/client.rb,
lib/event_store_client/store_adapter/api/connection.rb,
lib/event_store_client/store_adapter/api/request_method.rb

Defined Under Namespace

Modules: Mapper, StoreAdapter, Types Classes: Broker, Client, Configuration, Connection, DataDecryptor, DataEncryptor, DeserializedEvent, EncryptionMetadata, Endpoint, Event, Subscription, Subscriptions

Constant Summary collapse

VERSION =
'0.2.1'

Class Method Summary collapse

Class Method Details

.configure(&block) ⇒ Object



4
5
6
7
# File 'lib/event_store_client.rb', line 4

def self.configure(&block)
  config = Configuration.instance
  config.configure(&block)
end