Enum ProtocolBitmaskFeature
- java.lang.Object
-
- java.lang.Enum<ProtocolBitmaskFeature>
-
- org.apache.ignite.internal.client.thin.ProtocolBitmaskFeature
-
- All Implemented Interfaces:
Serializable,Comparable<ProtocolBitmaskFeature>
public enum ProtocolBitmaskFeature extends Enum<ProtocolBitmaskFeature>
Defines supported bitmask features for thin client.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL_AFFINITY_MAPPINGSSend all mappings to the client including non-default affinity functions.BINARY_CONFIGURATIONBinary configuration retrieval.CACHE_INVOKECache invoke/invokeAll operations.CLUSTER_GROUP_GET_NODES_ENDPOINTSClient discovery.CLUSTER_GROUPSCluster groups.CLUSTER_STATESAdds cluster states besides ACTIVE and INACTIVE.DATA_REPLICATION_OPERATIONSData replication operations:TcpClientCache.putAllConflict(java.util.Map<? extends K, ? extends org.apache.ignite.internal.util.typedef.T3<? extends V, org.apache.ignite.internal.processors.cache.version.GridCacheVersion, java.lang.Long>>),TcpClientCache.removeAllConflict(java.util.Map<? extends K, org.apache.ignite.internal.processors.cache.version.GridCacheVersion>).DEFAULT_QRY_TIMEOUTFeature for use default query timeout if the qry timeout isn't set explicitly.EXECUTE_TASK_BY_NAMECompute tasks (execute by task name).FORCE_DEACTIVATION_FLAGForce deactivation flag.GET_SERVICE_DESCRIPTORSHandle ofClientServices.serviceDescriptors().HEARTBEATHandle OP_HEARTBEAT and OP_GET_IDLE_TIMEOUT.INDEX_QUERYIndexQuery.INDEX_QUERY_LIMITIndexQuery limit.QRY_PARTITIONS_BATCH_SIZEAdditional SqlFieldsQuery properties: partitions, updateBatchSizeSERVICE_INVOKEInvoke service methods.SERVICE_INVOKE_CALLCTXInvoke service methods with caller context.SERVICE_TOPOLOGYService topology.TX_AWARE_QUERIESTransaction aware queries.USER_ATTRIBUTESFeature for user attributes.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EnumSet<ProtocolBitmaskFeature>allFeaturesAsEnumSet()static EnumSet<ProtocolBitmaskFeature>enumSet(byte[] bytes)intfeatureId()static ProtocolBitmaskFeaturevalueOf(String name)Returns the enum constant of this type with the specified name.static ProtocolBitmaskFeature[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
USER_ATTRIBUTES
public static final ProtocolBitmaskFeature USER_ATTRIBUTES
Feature for user attributes.
-
EXECUTE_TASK_BY_NAME
public static final ProtocolBitmaskFeature EXECUTE_TASK_BY_NAME
Compute tasks (execute by task name).
-
CLUSTER_STATES
public static final ProtocolBitmaskFeature CLUSTER_STATES
Adds cluster states besides ACTIVE and INACTIVE.
-
CLUSTER_GROUP_GET_NODES_ENDPOINTS
public static final ProtocolBitmaskFeature CLUSTER_GROUP_GET_NODES_ENDPOINTS
Client discovery.
-
CLUSTER_GROUPS
public static final ProtocolBitmaskFeature CLUSTER_GROUPS
Cluster groups.
-
SERVICE_INVOKE
public static final ProtocolBitmaskFeature SERVICE_INVOKE
Invoke service methods.
-
DEFAULT_QRY_TIMEOUT
public static final ProtocolBitmaskFeature DEFAULT_QRY_TIMEOUT
Feature for use default query timeout if the qry timeout isn't set explicitly.
-
QRY_PARTITIONS_BATCH_SIZE
public static final ProtocolBitmaskFeature QRY_PARTITIONS_BATCH_SIZE
Additional SqlFieldsQuery properties: partitions, updateBatchSize
-
BINARY_CONFIGURATION
public static final ProtocolBitmaskFeature BINARY_CONFIGURATION
Binary configuration retrieval.
-
GET_SERVICE_DESCRIPTORS
public static final ProtocolBitmaskFeature GET_SERVICE_DESCRIPTORS
Handle ofClientServices.serviceDescriptors().
-
SERVICE_INVOKE_CALLCTX
public static final ProtocolBitmaskFeature SERVICE_INVOKE_CALLCTX
Invoke service methods with caller context.
-
HEARTBEAT
public static final ProtocolBitmaskFeature HEARTBEAT
Handle OP_HEARTBEAT and OP_GET_IDLE_TIMEOUT.
-
DATA_REPLICATION_OPERATIONS
public static final ProtocolBitmaskFeature DATA_REPLICATION_OPERATIONS
Data replication operations:TcpClientCache.putAllConflict(java.util.Map<? extends K, ? extends org.apache.ignite.internal.util.typedef.T3<? extends V, org.apache.ignite.internal.processors.cache.version.GridCacheVersion, java.lang.Long>>),TcpClientCache.removeAllConflict(java.util.Map<? extends K, org.apache.ignite.internal.processors.cache.version.GridCacheVersion>).
-
ALL_AFFINITY_MAPPINGS
public static final ProtocolBitmaskFeature ALL_AFFINITY_MAPPINGS
Send all mappings to the client including non-default affinity functions.
-
INDEX_QUERY
public static final ProtocolBitmaskFeature INDEX_QUERY
IndexQuery.
-
INDEX_QUERY_LIMIT
public static final ProtocolBitmaskFeature INDEX_QUERY_LIMIT
IndexQuery limit.
-
SERVICE_TOPOLOGY
public static final ProtocolBitmaskFeature SERVICE_TOPOLOGY
Service topology.
-
CACHE_INVOKE
public static final ProtocolBitmaskFeature CACHE_INVOKE
Cache invoke/invokeAll operations.
-
TX_AWARE_QUERIES
public static final ProtocolBitmaskFeature TX_AWARE_QUERIES
Transaction aware queries.
-
FORCE_DEACTIVATION_FLAG
public static final ProtocolBitmaskFeature FORCE_DEACTIVATION_FLAG
Force deactivation flag. Seeorg.apache.ignite.client.ClientCluster#state(ClusterState, boolean).
-
-
Method Detail
-
values
public static ProtocolBitmaskFeature[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ProtocolBitmaskFeature c : ProtocolBitmaskFeature.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProtocolBitmaskFeature valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
featureId
public int featureId()
- Returns:
- Feature ID.
-
enumSet
public static EnumSet<ProtocolBitmaskFeature> enumSet(byte[] bytes)
- Parameters:
bytes- Feature byte array.- Returns:
- Set of supported features.
-
allFeaturesAsEnumSet
public static EnumSet<ProtocolBitmaskFeature> allFeaturesAsEnumSet()
- Returns:
- All features as a set.
-
-