Method: Copland::ServiceModel::Proxy#initialize
- Defined in:
- lib/copland/models/proxy.rb
#initialize(service_point, &init) ⇒ Proxy
Create a new proxy that wraps the given service point.
44 45 46 47 48 |
# File 'lib/copland/models/proxy.rb', line 44 def initialize( service_point, &init ) @service_point = service_point @mutex = Mutex.new @init = init end |