Class PreloadingAttemptSource
- java.lang.Object
-
- org.openqa.selenium.devtools.v114.preload.model.PreloadingAttemptSource
-
public class PreloadingAttemptSource extends java.lang.Object
Lists sources for a preloading attempt, specifically the ids of rule sets that had a speculation rule that triggered the attempt, and the BackendNodeIds of or elements that triggered the attempt (in the case of attempts triggered by a document rule). It is possible for mulitple rule sets and links to trigger a single attempt.
-
-
Constructor Summary
Constructors Constructor Description PreloadingAttemptSource(PreloadingAttemptKey key, java.util.List<RuleSetId> ruleSetIds, java.util.List<BackendNodeId> nodeIds)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PreloadingAttemptKey
getKey()
java.util.List<BackendNodeId>
getNodeIds()
java.util.List<RuleSetId>
getRuleSetIds()
-
-
-
Constructor Detail
-
PreloadingAttemptSource
public PreloadingAttemptSource(PreloadingAttemptKey key, java.util.List<RuleSetId> ruleSetIds, java.util.List<BackendNodeId> nodeIds)
-
-
Method Detail
-
getKey
public PreloadingAttemptKey getKey()
-
getRuleSetIds
public java.util.List<RuleSetId> getRuleSetIds()
-
getNodeIds
public java.util.List<BackendNodeId> getNodeIds()
-
-