Client ICluster
public
interface
IClusterClient
com.android.tradefed.cluster.IClusterClient |
Un'interfaccia per interagire con il backend TFC.
Riepilogo
Costanti | |
---|---|
String |
TYPE_NAME
Il nome univoco del tipo di oggetto di configurazione. |
Metodi pubblici | |
---|---|
abstract
IClusterEventUploader<ClusterCommandEvent>
|
getCommandEventUploader()
Ricevi un |
abstract
ClusterCommand.State
|
getCommandState(String requestId, String commandId)
Determinare lo stato di un comando del cluster. |
default
ClusterCommandStatus
|
getCommandStatus(String requestId, String commandId)
Ottieni lo stato di un comando cluster (lo stato e il motivo dell'annullamento in caso di annullamento). |
abstract
IClusterEventUploader<ClusterHostEvent>
|
getHostEventUploader()
Ricevi un |
abstract
TestContext
|
getTestContext(String requestId, String commandId)
|
abstract
TestEnvironment
|
getTestEnvironment(String requestId)
Ottieni |
abstract
|
getTestResources(String requestId)
Ricevi |
abstract
|
leaseHostCommands(String clusterId, String hostname,
Prendi in leasing |
abstract
void
|
updateTestContext(String requestId, String commandId, TestContext testContext)
|
Costanti
TIPO_NAME
public static final String TYPE_NAME
Il nome univoco del tipo di oggetto di configurazione. Utilizzato per recuperare l'istanza singleton dal
GlobalConfiguration
.
Vedi anche:
Valore costante: "client_cluster"
Metodi pubblici
getCommandEventUploader
public abstract IClusterEventUploader<ClusterCommandEvent> getCommandEventUploader ()
Ricevi un IClusterEventUploader
da utilizzare per caricare ClusterCommandEvent
.
Ritorni | |
---|---|
IClusterEventUploader<ClusterCommandEvent> |
getCommandState
public abstract ClusterCommand.State getCommandState (String requestId, String commandId)
Determinare lo stato di un comando del cluster.
Parametri | |
---|---|
requestId |
String : ID richiesta cluster |
commandId |
String : ID comando cluster |
Ritorni | |
---|---|
ClusterCommand.State |
stato del comando cluster o ClusterCommand.State#UNKNOWN se lo stato non è possibile
essere determinato |
getCommandStatus
public ClusterCommandStatus getCommandStatus (String requestId, String commandId)
Ottieni lo stato di un comando cluster (lo stato e il motivo dell'annullamento in caso di annullamento).
Parametri | |
---|---|
requestId |
String : ID richiesta cluster |
commandId |
String : ID comando cluster |
Ritorni | |
---|---|
ClusterCommandStatus |
un ClusterCommandStatus che rappresenta lo stato e il motivo dell'annullamento se il comando
viene annullata. Se non è stato possibile, lo stato è ClusterCommand.State#UNKNOWN
determinato. |
getHostEventUploader
public abstract IClusterEventUploader<ClusterHostEvent> getHostEventUploader ()
Ricevi un IClusterEventUploader
da utilizzare per caricare ClusterHostEvent
.
Ritorni | |
---|---|
IClusterEventUploader<ClusterHostEvent> |
getTestContext
public abstract TestContext getTestContext (String requestId, String commandId)
Parametri | |
---|---|
requestId |
String |
commandId |
String |
Ritorni | |
---|---|
TestContext |
Lanci | |
---|---|
JSONException |
getTestEnvironment
public abstract TestEnvironment getTestEnvironment (String requestId)
Ottieni TestEnvironment
per una richiesta.
Ritorni | |
---|---|
TestEnvironment |
un oggetto TestEnvironment . |
Lanci | |
---|---|
|
Eccezione IO |
|
org.json.JSONEccezione |
JSONException |
getTestResources
public abstractgetTestResources (String requestId)
Ricevi TestResource
per una richiesta.
Ritorni | |
---|---|
|
un elenco di TestResource . |
Lanci | |
---|---|
|
Eccezione IO |
|
org.json.JSONEccezione |
JSONException |
leaseHostCommand
public abstractleaseHostCommands (String clusterId, String hostname, devices, nextClusterIds, int maxTasksTolease)
Prendi in leasing ClusterCommand
per l'host fornito.
Parametri | |
---|---|
clusterId |
String : ID cluster per l'host |
hostname |
String : nome host |
devices |
: informazioni sul dispositivo dell'host |
nextClusterIds |
: un elenco di ID cluster successivi da cui eseguire il lease dei comandi. |
maxTasksTolease |
int : il numero massimo di attività che al momento possono essere noleggiate |
Ritorni | |
---|---|
|
un elenco di ClusterCommand |
Lanci | |
---|---|
|
org.json.JSONEccezione |
JSONException |
updateTestContext
public abstract void updateTestContext (String requestId, String commandId, TestContext testContext)
Parametri | |
---|---|
requestId |
String |
commandId |
String |
testContext |
TestContext |
Lanci | |
---|---|
JSONException |