次の方法で共有


ServicePartitionKey クラス

  • java.lang.Object
    • microsoft.servicefabric.services.client.ServicePartitionKey

public class ServicePartitionKey

サービス パーティションをアドレス指定するキーを定義します。

フィールドの概要

修飾子と型 フィールドと説明
final ServicePartitionKey singleton

シングルトン パーティションを示す ServicePartitionKey を返します。

コンストラクターの概要

コンストラクター 説明
ServicePartitionKey()

シングルトン パーティション分割サービスの ServicePartitionKey を作成します。

ServicePartitionKey(long partitionKey)

均一な int64 パーティション分割されたサービスの ServicePartitionKey を作成します。

ServicePartitionKey(String partitionKey)

名前付きパーティション分割されたサービスの ServicePartitionKey を作成します。

メソッドの概要

修飾子と型 メソッドと説明
ServicePartitionKind kind()

このキーが適用されるパーティションの種類。

Object value()

パーティション キーの値。 この値は、Kind プロパティの値に基づいて適切な型にキャストできます。

フィールドの詳細

singleton

public static final ServicePartitionKey singleton= new ServicePartitionKey()

シングルトン パーティションを示す ServicePartitionKey を返します。

コンストラクターの詳細

ServicePartitionKey

public ServicePartitionKey()

シングルトン パーティション分割サービスの ServicePartitionKey を作成します。

ServicePartitionKey

public ServicePartitionKey(long partitionKey)

均一な int64 パーティション分割されたサービスの ServicePartitionKey を作成します。

Parameters:

partitionKey - int64 パーティション キーの値。

ServicePartitionKey

public ServicePartitionKey(String partitionKey)

名前付きパーティション分割されたサービスの ServicePartitionKey を作成します。

Parameters:

partitionKey - 名前付きパーティション キーの値。

メソッドの詳細

kind

public ServicePartitionKind kind()

このキーが適用されるパーティションの種類。

Returns:

パーティションの種類

value

public Object value()

パーティション キーの値。 この値は、Kind プロパティの値に基づいて適切な型にキャストできます。

Returns:

パーティション キー

適用対象