public enum RequestType extends Enum<RequestType>
| Enum Constant and Description | 
|---|
| ADDRESSES_AND_PARTITIONS_REQUESTSend addresses and partitions assignments from master to workers | 
| ASK_FOR_INPUT_SPLIT_REQUESTSend request for input split from worker to master | 
| PARTITION_STATS_REQUESTSend partition stats from worker to master | 
| REPLY_WITH_INPUT_SPLIT_REQUESTSend request with granted input split from master to workers | 
| SASL_COMPLETE_REQUESTUsed by servers to acknowledge SASL authentication completion with
 client, so client can modify its pipeline afterwards. | 
| SASL_TOKEN_MESSAGE_REQUESTExchange authentication information between clients and servers | 
| SEND_AGGREGATORS_TO_MASTER_REQUESTSend aggregated values from worker owner to master | 
| SEND_AGGREGATORS_TO_OWNER_REQUESTSend aggregators from master to worker owners | 
| SEND_AGGREGATORS_TO_WORKER_REQUESTSend aggregators from worker owner to other workers | 
| SEND_PARTITION_CURRENT_MESSAGES_REQUESTSending a partition of messages for current superstep
 (used during partition exchange) | 
| SEND_PARTITION_MUTATIONS_REQUESTSend a partition of mutations | 
| SEND_RESUME_REQUESTSend request to resume sending messages (used in flow-control) | 
| SEND_VERTEX_REQUESTSending vertices request | 
| SEND_WORKER_AGGREGATORS_REQUESTSend aggregated values from one worker's vertices | 
| SEND_WORKER_EDGES_REQUESTSend a partition of edges | 
| SEND_WORKER_MESSAGES_REQUESTSending a partition of messages for next superstep | 
| SEND_WORKER_ONE_MESSAGE_TO_MANY_REQUESTSending one message to many ids in a single request | 
| SEND_WORKER_TO_WORKER_MESSAGE_REQUESTSend message from worker to worker | 
| SEND_WORKER_VERTICES_REQUESTSending vertices request | 
| Modifier and Type | Method and Description | 
|---|---|
| Class<? extends WritableRequest> | getRequestClass()Get class of request which this type corresponds to | 
| static RequestType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static RequestType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final RequestType SASL_TOKEN_MESSAGE_REQUEST
public static final RequestType SASL_COMPLETE_REQUEST
public static final RequestType SEND_VERTEX_REQUEST
public static final RequestType SEND_WORKER_VERTICES_REQUEST
public static final RequestType SEND_WORKER_MESSAGES_REQUEST
public static final RequestType SEND_WORKER_ONE_MESSAGE_TO_MANY_REQUEST
public static final RequestType SEND_PARTITION_CURRENT_MESSAGES_REQUEST
public static final RequestType SEND_WORKER_EDGES_REQUEST
public static final RequestType SEND_PARTITION_MUTATIONS_REQUEST
public static final RequestType SEND_WORKER_AGGREGATORS_REQUEST
public static final RequestType SEND_AGGREGATORS_TO_MASTER_REQUEST
public static final RequestType SEND_AGGREGATORS_TO_OWNER_REQUEST
public static final RequestType SEND_AGGREGATORS_TO_WORKER_REQUEST
public static final RequestType SEND_WORKER_TO_WORKER_MESSAGE_REQUEST
public static final RequestType ASK_FOR_INPUT_SPLIT_REQUEST
public static final RequestType REPLY_WITH_INPUT_SPLIT_REQUEST
public static final RequestType SEND_RESUME_REQUEST
public static final RequestType ADDRESSES_AND_PARTITIONS_REQUEST
public static final RequestType PARTITION_STATS_REQUEST
public static RequestType[] values()
for (RequestType c : RequestType.values()) System.out.println(c);
public static RequestType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic Class<? extends WritableRequest> getRequestClass()
Copyright © 2011-2020 The Apache Software Foundation. All Rights Reserved.