When a service point is fixated, it will extend this module. This causes certain operations on the service point to become illegal, or to do nothing.
Methods
Public Instance methods
Raises DisallowedOperationException.
[ show source ]
# File lib/copland/service-point.rb, line 270
270: def add_pending_interceptor( *args )
271: raise DisallowedOperationException,
272: "cannot add pending interceptors to a fixated service point"
273: end
Does nothing.
[ show source ]
# File lib/copland/service-point.rb, line 276
276: def fixate!
277: # does nothing
278: end
Returns true.
[ show source ]
# File lib/copland/service-point.rb, line 281
281: def fixated?
282: true
283: end