tubes.routing.Routed(object)
class documentationtubes.routing
(View In Hierarchy)
A Routed
is a
specification describing another specification that has been wrapped in a
to
. As such, it is an incomplete implementation of ISpecification
.
Method | __init__ | Derive a Routed
version of specification . |
Method | isOrExtends | Is this Routed
substitutable for the given specification? |
Method | providedBy | Is this Routed
provided by a particular value? |
Method | __eq__ | Routed(X) compares equal to Routed(X). |
Method | __ne__ | Routed(X) compares unequal to Routed(Y). |
Derive a Routed
version of specification
.
Parameters | specification | the specification that will be provided by the what attribute
of providers of this specification. (type: ISpecification ) |
Is this Routed
substitutable for the given specification?
Parameters | other | Another Routed or
specification. (type: ISpecification ) |
Returns | True
if so, False
if not. |