4

クイックフィックスのメッセージ ストア構造の目的は何ですか? メッセージストアインターフェイスを介してすべての受信および送信修正メッセージをログに記録できること、およびクイックフィックスがファイルストアなどの複数の実装を提供することを理解しています.

私の質問は、記録のために修正メッセージをログに記録する以外に、なぜメッセージストアを気にするのですか?

4

1 に答える 1

6

You are confusing the MessageStore and the Log, which are two different things.

The MessageStore is for internal engine use. It tracks the current incoming and outgoing message sequence numbers, session start time, and other stuff. If your app goes down for whatever reason, when it restarts, it uses the MessageStore to resume where it left off with regards to sequence number and whether to reset the session.

The Log, however, is just a log. The engine doesn't really care about it. It's for the developers.

于 2012-11-28T22:10:00.990 に答える