次の方法で共有


BaseLease class

基本リースについて説明します。

コンストラクター

BaseLease(BaseLeaseInfo)

プロパティ

isOwned

リースが所有されていることを示します。 true それが誰かによって所有されている場合; false それ以外の場合は 。

owner

パーティションのホスト所有者。

partitionId

リースが保持されている関連付けられた partitionId。

メソッド

getInfo()

リース情報を取得します。

isOwnedBy(string)

possibleOwner と this.owner を比較します

コンストラクターの詳細

BaseLease(BaseLeaseInfo)

new BaseLease(info: BaseLeaseInfo)

パラメーター

info
BaseLeaseInfo

基本リースの作成に必要な情報。

プロパティの詳細

isOwned

リースが所有されていることを示します。 true それが誰かによって所有されている場合; false それ以外の場合は 。

isOwned: boolean

プロパティ値

boolean

owner

パーティションのホスト所有者。

owner: string

プロパティ値

string

partitionId

リースが保持されている関連付けられた partitionId。

partitionId: string

プロパティ値

string

メソッドの詳細

getInfo()

リース情報を取得します。

function getInfo(): BaseLeaseInfo

戻り値

CompleteLeaseInfo。

isOwnedBy(string)

possibleOwner と this.owner を比較します

function isOwnedBy(possibleOwner: string): boolean

パラメーター

possibleOwner

string

確認する所有者名。

戻り値

boolean

boolean - possibleOwner が this.owner と同じ場合は true、それ以外の場合は false。