Uses of Class
org.openqa.selenium.grid.data.NodeId
-
Packages that use NodeId Package Description org.openqa.selenium.grid.data org.openqa.selenium.grid.distributor TheDistributor
is responsible for assigning new calls to Create Session to aNode
.org.openqa.selenium.grid.distributor.local org.openqa.selenium.grid.distributor.remote org.openqa.selenium.grid.graphql org.openqa.selenium.grid.node org.openqa.selenium.grid.node.remote -
-
Uses of NodeId in org.openqa.selenium.grid.data
Methods in org.openqa.selenium.grid.data that return NodeId Modifier and Type Method Description NodeId
NodeStatus. getId()
NodeId
SlotId. getOwningNodeId()
Methods in org.openqa.selenium.grid.data that return types with arguments of type NodeId Modifier and Type Method Description static EventListener<NodeId>
NodeAddedEvent. listener(java.util.function.Consumer<NodeId> handler)
static EventListener<NodeId>
NodeDrainComplete. listener(java.util.function.Consumer<NodeId> handler)
static EventListener<NodeId>
NodeDrainStarted. listener(java.util.function.Consumer<NodeId> handler)
Methods in org.openqa.selenium.grid.data with parameters of type NodeId Modifier and Type Method Description int
NodeId. compareTo(NodeId that)
Method parameters in org.openqa.selenium.grid.data with type arguments of type NodeId Modifier and Type Method Description static EventListener<NodeId>
NodeAddedEvent. listener(java.util.function.Consumer<NodeId> handler)
static EventListener<NodeId>
NodeDrainComplete. listener(java.util.function.Consumer<NodeId> handler)
static EventListener<NodeId>
NodeDrainStarted. listener(java.util.function.Consumer<NodeId> handler)
Constructors in org.openqa.selenium.grid.data with parameters of type NodeId Constructor Description NodeAddedEvent(NodeId nodeId)
NodeDrainComplete(NodeId id)
NodeDrainStarted(NodeId id)
NodeStatus(NodeId nodeId, java.net.URI externalUri, int maxSessionCount, java.util.Set<Slot> slots, Availability availability, java.time.Duration heartbeatPeriod, java.lang.String version, java.util.Map<java.lang.String,java.lang.String> osInfo)
SlotId(NodeId host, java.util.UUID uuid)
-
Uses of NodeId in org.openqa.selenium.grid.distributor
Methods in org.openqa.selenium.grid.distributor with parameters of type NodeId Modifier and Type Method Description abstract boolean
Distributor. drain(NodeId nodeId)
abstract void
Distributor. remove(NodeId nodeId)
Constructors in org.openqa.selenium.grid.distributor with parameters of type NodeId Constructor Description DrainNode(Distributor distributor, NodeId nodeId)
-
Uses of NodeId in org.openqa.selenium.grid.distributor.local
Methods in org.openqa.selenium.grid.distributor.local with parameters of type NodeId Modifier and Type Method Description boolean
LocalDistributor. drain(NodeId nodeId)
GridModel
GridModel. remove(NodeId id)
void
LocalDistributor. remove(NodeId nodeId)
Availability
GridModel. setAvailability(NodeId id, Availability availability)
GridModel
GridModel. touch(NodeId id)
-
Uses of NodeId in org.openqa.selenium.grid.distributor.remote
Methods in org.openqa.selenium.grid.distributor.remote with parameters of type NodeId Modifier and Type Method Description boolean
RemoteDistributor. drain(NodeId nodeId)
void
RemoteDistributor. remove(NodeId nodeId)
-
Uses of NodeId in org.openqa.selenium.grid.graphql
Methods in org.openqa.selenium.grid.graphql that return NodeId Modifier and Type Method Description NodeId
Node. getId()
Constructors in org.openqa.selenium.grid.graphql with parameters of type NodeId Constructor Description Node(NodeId id, java.net.URI uri, Availability status, int maxSession, int slotCount, java.util.Map<org.openqa.selenium.Capabilities,java.lang.Integer> stereotypes, java.util.Map<Session,Slot> activeSessions, java.lang.String version, OsInfo osInfo)
-
Uses of NodeId in org.openqa.selenium.grid.node
Methods in org.openqa.selenium.grid.node that return NodeId Modifier and Type Method Description NodeId
Node. getId()
Constructors in org.openqa.selenium.grid.node with parameters of type NodeId Constructor Description Node(org.openqa.selenium.remote.tracing.Tracer tracer, NodeId id, java.net.URI uri, Secret registrationSecret)
-
Uses of NodeId in org.openqa.selenium.grid.node.remote
Constructors in org.openqa.selenium.grid.node.remote with parameters of type NodeId Constructor Description RemoteNode(org.openqa.selenium.remote.tracing.Tracer tracer, org.openqa.selenium.remote.http.HttpClient.Factory clientFactory, NodeId id, java.net.URI externalUri, Secret registrationSecret, java.util.Collection<org.openqa.selenium.Capabilities> capabilities)
-