Uses of Interface
org.osgi.service.wireadmin.Wire
-
Packages that use Wire Package Description org.osgi.service.wireadmin -
-
Uses of Wire in org.osgi.service.wireadmin
Methods in org.osgi.service.wireadmin that return Wire Modifier and Type Method Description Wire
WireAdmin. createWire(java.lang.String producerPID, java.lang.String consumerPID, java.util.Dictionary properties)
Create a newWire
object that connects a Producer service to a Consumer service.Wire
WireAdminEvent. getWire()
Return theWire
object associated with this event.Wire[]
WireAdmin. getWires(java.lang.String filter)
Return theWire
objects that match the givenfilter
.Methods in org.osgi.service.wireadmin with parameters of type Wire Modifier and Type Method Description void
Producer. consumersConnected(Wire[] wires)
Update the list ofWire
objects to which thisProducer
object is connected.void
WireAdmin. deleteWire(Wire wire)
Delete aWire
object.java.lang.Object
Producer. polled(Wire wire)
Return the current value of thisProducer
object.void
Consumer. producersConnected(Wire[] wires)
Update the list ofWire
objects to which this Consumer service is connected.void
Consumer. updated(Wire wire, java.lang.Object value)
Update the value.void
WireAdmin. updateWire(Wire wire, java.util.Dictionary properties)
Update the properties of aWire
object.Constructors in org.osgi.service.wireadmin with parameters of type Wire Constructor Description WireAdminEvent(org.osgi.framework.ServiceReference reference, int type, Wire wire, java.lang.Throwable exception)
Constructs aWireAdminEvent
object from the givenServiceReference
object, event type,Wire
object and exception.
-