ホーム › Storage.FileSystem › TRANSACTION_OUTCOME
TRANSACTION_OUTCOME
列挙型メンバー 3
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| TransactionOutcomeUndetermined | 1 | 0x1 | トランザクションはまだコミットもロールバックもされていません。 |
| TransactionOutcomeCommitted | 2 | 0x2 | トランザクションはコミットされました。 |
| TransactionOutcomeAborted | 3 | 0x3 | トランザクションはロールバックされました。 |
公式ドキュメント
KTM がトランザクションに割り当てることができる結果 (outcome) を定義します。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum TRANSACTION_OUTCOME : int {
TransactionOutcomeUndetermined = 1,
TransactionOutcomeCommitted = 2,
TransactionOutcomeAborted = 3
} TRANSACTION_OUTCOME;public enum TRANSACTION_OUTCOME : int
{
TransactionOutcomeUndetermined = 1,
TransactionOutcomeCommitted = 2,
TransactionOutcomeAborted = 3,
}Public Enum TRANSACTION_OUTCOME As Integer
TransactionOutcomeUndetermined = 1
TransactionOutcomeCommitted = 2
TransactionOutcomeAborted = 3
End Enumimport enum
class TRANSACTION_OUTCOME(enum.IntEnum):
TransactionOutcomeUndetermined = 1
TransactionOutcomeCommitted = 2
TransactionOutcomeAborted = 3// TRANSACTION_OUTCOME
pub const TransactionOutcomeUndetermined: i32 = 1;
pub const TransactionOutcomeCommitted: i32 = 2;
pub const TransactionOutcomeAborted: i32 = 3;// TRANSACTION_OUTCOME
const (
TransactionOutcomeUndetermined int32 = 1
TransactionOutcomeCommitted int32 = 2
TransactionOutcomeAborted int32 = 3
)const
TransactionOutcomeUndetermined = 1;
TransactionOutcomeCommitted = 2;
TransactionOutcomeAborted = 3;// TRANSACTION_OUTCOME
pub const TransactionOutcomeUndetermined: i32 = 1;
pub const TransactionOutcomeCommitted: i32 = 2;
pub const TransactionOutcomeAborted: i32 = 3;const
TransactionOutcomeUndetermined* = 1
TransactionOutcomeCommitted* = 2
TransactionOutcomeAborted* = 3enum TRANSACTION_OUTCOME : int {
TransactionOutcomeUndetermined = 1,
TransactionOutcomeCommitted = 2,
TransactionOutcomeAborted = 3,
}#define global TransactionOutcomeUndetermined 0x1
#define global TransactionOutcomeCommitted 0x2
#define global TransactionOutcomeAborted 0x3