Class: WsdlMapper::Runtime::Service
- Inherits:
-
Object
- Object
- WsdlMapper::Runtime::Service
- Includes:
- SimplerInspect
- Defined in:
- lib/wsdl_mapper/runtime/service.rb
Instance Attribute Summary (collapse)
-
- (Array<WsdlMapper::Runtime::Port>) _ports
All ports contained in this service.
Instance Method Summary (collapse)
-
- (Object) _load_requires
Force preloading of requires for all contained ports.
-
- (Service) initialize(api)
constructor
A new instance of Service.
Methods included from SimplerInspect
Constructor Details
- (Service) initialize(api)
Returns a new instance of Service
14 15 16 17 |
# File 'lib/wsdl_mapper/runtime/service.rb', line 14 def initialize(api) @_api = api @_ports = [] end |
Instance Attribute Details
- (Array<WsdlMapper::Runtime::Port>) _ports
Returns All ports contained in this service
10 11 12 |
# File 'lib/wsdl_mapper/runtime/service.rb', line 10 def _ports @_ports end |
Instance Method Details
- (Object) _load_requires
Force preloading of requires for all contained ports
20 21 22 |
# File 'lib/wsdl_mapper/runtime/service.rb', line 20 def _load_requires @_ports.each &:_load_requires end |