summaryrefslogtreecommitdiff
path: root/indra/llmessage/lluseroperation.h
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llmessage/lluseroperation.h')
-rw-r--r--indra/llmessage/lluseroperation.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/llmessage/lluseroperation.h b/indra/llmessage/lluseroperation.h
index 61456bcdce..60cde39bf0 100644
--- a/indra/llmessage/lluseroperation.h
+++ b/indra/llmessage/lluseroperation.h
@@ -28,6 +28,9 @@ public:
// Operation never got necessary data, so expired
virtual BOOL isExpired();
+ // ability to mark this operation as never expiring.
+ void SetNoExpireFlag(const BOOL flag);
+
// Send request to the dataserver
virtual void sendRequest() = 0;
@@ -47,6 +50,7 @@ protected:
LLUUID mAgentID;
LLUUID mTransactionID;
LLFrameTimer mTimer;
+ BOOL mNoExpire; // this is used for operations that expect an answer and will wait till it gets one.
};