Class: Couchbase::ClusterRegistry
- Inherits:
-
Object
- Object
- Couchbase::ClusterRegistry
- Includes:
- Singleton
- Defined in:
- lib/couchbase/cluster_registry.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/cluster_registry.rb more...
Instance Method Summary collapse
- #connect(connection_string, *options) ⇒ Object
- #deregister_connection_handler(regexp) ⇒ Object
-
#initialize ⇒ ClusterRegistry
constructor
A new instance of ClusterRegistry.
- #register_connection_handler(regexp, cluster_class) ⇒ Object
Constructor Details
#initialize ⇒ ClusterRegistry
Returns a new instance of ClusterRegistry.
25 26 27 |
# File 'lib/couchbase/cluster_registry.rb', line 25 def initialize @handlers = {} end |
Instance Method Details
#connect(connection_string, *options) ⇒ Object
29 30 31 32 33 34 |
# File 'lib/couchbase/cluster_registry.rb', line 29 def connect(connection_string, *) @handlers.each do |regexp, cluster_class| return cluster_class.connect(connection_string, *) if regexp.match?(connection_string) end raise(Error::FeatureNotAvailable, "Connection string '#{connection_string}' not supported.") end |
#deregister_connection_handler(regexp) ⇒ Object
[View source]
40 41 42 |
# File 'lib/couchbase/cluster_registry.rb', line 40 def deregister_connection_handler(regexp) @handlers.delete(regexp) end |
#register_connection_handler(regexp, cluster_class) ⇒ Object
[View source]
36 37 38 |
# File 'lib/couchbase/cluster_registry.rb', line 36 def register_connection_handler(regexp, cluster_class) @handlers[regexp] = cluster_class end |