Message Persistence API for PubNub C# SDK
Message Persistence provides real-time access to the history of all messages published to PubNub. Each published message is timestamped to the nearest 10 nanoseconds and is stored across multiple availability zones in several geographical locations. Stored messages can be encrypted with AES-256 message encryption, ensuring that they are not readable while stored on PubNub's network. For more information, refer to Message Persistence.
Messages can be stored for a configurable duration or forever, as controlled by the retention policy that is configured on your account. The following options are available: 1 day, 7 days, 30 days, 3 months, 6 months, 1 year, or Unlimited.
You can retrieve the following:
- Messages
- Message actions
- File Sharing (using File Sharing API)
Fetch History
Requires Message Persistence
This method requires that Message Persistence is enabled for your key in the Admin Portal. Read the support page on enabling add-on features on your keys.
This function fetches historical messages from one or multiple channels. The includeMessageActions
flag also allows you to fetch message actions along with the messages.
It's possible to control how messages are returned and in what order.
- if you specify only the
start
parameter (withoutend
), you will receive messages that are older than thestart
timetoken - if you specify only the
end
parameter (withoutstart
), you will receive messages from thatend
timetoken and newer - if you specify values for both
start
andend
parameters, you will retrieve messages between those timetokens (inclusive of theend
value)
You will receive a maximum of 100 messages for a single channel or 25 messages for multiple channels (up to 500). If more messages meet the timetoken criteria, make iterative calls while adjusting the start
timetoken to fetch the entire list of messages from Message Persistence.
Method(s)
To run Fetch History
, you can use the following method(s) in the C# SDK:
pubnub.FetchHistory()
.Channels(string[])
.IncludeMeta(bool)
.IncludeMessageType(bool)
.IncludeUUID(bool)
.IncludeMessageActions(bool)
.Reverse(bool)
.Start(int)
.End(int)
.MaximumPerChannel(int)
.QueryParam(Dictionary<string, object>)
Parameter | Type | Required | Description |
---|---|---|---|
Channels | string[] | Yes | Specifies channel to return history messages from. Maximum of 500 channels are allowed. |
IncludeMeta | bool | Optional | Whether meta (passed when Publishing the message) should be included in response or not. |
IncludeMessageType | bool | Optional | Pass true to receive the message type with each history message. Default is true . |
IncludeUUID | bool | Optional | Pass true to receive the publisher uuid with each history message. Default is true . |
IncludeMessageActions | bool | Optional | The flag denoting to retrieve history messages with message actions. If true , the method is limited to one channel and 25 messages only. Default is false . |
Reverse | bool | Optional | Setting to true will traverse the time line in reverse starting with the oldest message first. |
Start | long | Optional | Timetoken delimiting the start of time slice (exclusive) to pull messages from. |
End | long | Optional | Timetoken delimiting the end of time slice (inclusive) to pull messages from. |
MaximumPerChannel | int | Optional | Specifies the number of historical messages to return. Default and maximum is 100 for a single channel, 25 for multiple channels, and 25 if IncludeMessageActions is true . |
QueryParam | Dictionary<string, object> | Optional | QueryParam accepts a Dictionary object, the keys and values are passed as the query string parameters of the URL called by the API. |
Execute | PNCallback | Yes | PNCallback of type PNFetchHistoryResult . |
ExecuteAsync | None | Optional | Returns PNResult<PNFetchHistoryResult> . |
Truncated response
If you fetch messages with messages actions, the number of messages in the response may be truncated when internal limits are hit. If the response is truncated, a more
property will be returned with additional parameters. Send iterative calls to history adjusting the parameters to fetch more messages.
Basic Usage
Retrieve the last message on a channel:
PNResult<PNFetchHistoryResult> fetchHistoryResponse = await pubnub.FetchHistory()
.Channels(new string[] { "my_channel" })
.IncludeMeta(true)
.MaximumPerChannel(25)
.ExecuteAsync();
Returns
{
"Messages":
{
"my_channel":
[{
"Timetoken":15717278253295153,
"Entry":"sample message",
"Meta":"",
"Uuid":"user-1",
"MessageType":null,
"Actions":null
}]
},
"More":null
}
Other Examples
Retrieve the last 25 messages on a channel synchronously
pubnub.FetchHistory()
.Channels(new string[] { "my_channel" })
.IncludeMeta(true)
.MaximumPerChannel(25)
.Execute(new PNFetchHistoryResultExt((result, status) =>
{
}));
Delete Messages from History
Requires Message Persistence
This method requires that Message Persistence is enabled for your key in the Admin Portal. Read the support page on enabling add-on features on your keys.
Removes the messages from the history of a specific channel.
Required setting
There is a setting to accept delete from history requests for a key, which you must enable by checking the Enable Delete-From-History
checkbox in the key settings for your key in the Admin Portal.
Requires Initialization with secret key.
Method(s)
To Delete Messages from History
you can use the following method(s) in the C# SDK.
pubnub.DeleteMessages()
.Channel(string)
.Start(long)
.End(long)
.QueryParam(Dictionary<string,object>)
Parameter | Type | Required | Description |
---|---|---|---|
Channel | string | Yes | Specifies channel messages to be deleted from history. |
Start | long | Optional | Timetoken delimiting the Start of time slice (inclusive) to delete messages from. |
End | long | Optional | Timetoken delimiting the End of time slice (exclusive) to delete messages from. |
QueryParam | Dictionary<string, object> | Optional | Dictionary object to pass name/value pairs as query string params with PubNub URL request for debug purpose. |
Async | PNCallback | Deprecated | PNCallback of type PNDeleteMessageResult . |
Execute | PNCallback | Yes | PNCallback of type PNDeleteMessageResult . |
ExecuteAsync | None | Optional | Returns PNResult<PNDeleteMessageResult> . |
Basic Usage
PNResult<PNDeleteMessageResult> delMsgResponse = await pubnub.DeleteMessages()
.Channel("history_channel")
.Start(15088506076921021)
.End(15088532035597390)
.ExecuteAsync();
PNDeleteMessageResult delMsgResult = delMsgResponse.Result;
PNStatus status = delMsgResponse.Status;
if (status != null && status.Error)
{
//Check for any error
Console.WriteLine(status.ErrorData.Information);
}
else if (delMsgResult != null)
show all 19 linesReturns
The DeleteMessages()
operation returns a PNResult<PNDeleteMessageResult>
which returns empty PNDeleteMessageResult
object.
Other Examples
Delete messages sent in a particular timeframe
pubnub.DeleteMessages()
.Channel("history_channel")
.Start(15088506076921021)
.End(15088532035597390)
.Execute(new PNDeleteMessageResultExt(
(result, status) => {
if (status != null && status.Error) {
//Check for any error
Console.WriteLine(status.ErrorData.Information);
}
else if (result != null) {
//Expect empty object
Console.WriteLine(pubnub.JsonPluggableLibrary.SerializeToJsonString(result));
}
}
show all 16 linesDelete specific message from history
To delete a specific message, pass the publish timetoken
(received from a successful publish) in the End
parameter and timetoken +/- 1
in the Start
parameter. For example, if 15526611838554310
is the publish timetoken
, pass 15526611838554309
in Start
and 15526611838554310
in End
parameters respectively as shown in the following code snippet.
PNResult<PNDeleteMessageResult> delMsgResponse = await pubnub.DeleteMessages()
.Channel("history_channel")
.Start(15526611838554310)
.End(15526611838554309)
.ExecuteAsync();
PNDeleteMessageResult delMsgResult = delMsgResponse.Result;
PNStatus status = delMsgResponse.Status;
if (status != null && status.Error)
{
//Check for any error
Console.WriteLine(status.ErrorData.Information);
}
else if (delMsgResult != null)
show all 19 linesMessage Counts
Requires Message Persistence
This method requires that Message Persistence is enabled for your key in the Admin Portal. Read the support page on enabling add-on features on your keys.
Returns the number of messages published on one or more channels since a given time. The count
returned is the number of messages in history with a timetoken
value greater than or equal to
than the passed value in the ChannelsTimetoken
parameter.
Unlimited message retention
For keys with unlimited message retention enabled, this method considers only messages published in the last 30 days.
Method(s)
You can use the following method(s) in the C# SDK:
pubnub.MessageCounts()
.Channels(string[])
.ChannelsTimetoken(long[])
.QueryParam(Dictionary<string, object>)
Parameter | Type | Required | Description |
---|---|---|---|
Channels | string[] | Yes | The channels to fetch the message count |
ChannelsTimetoken | long[] | Yes | Array of timetokens , in order of the channels list. Specify a single timetoken to apply it to all channels. Otherwise, the list of timetokens must be the same length as the list of channels, or the function returns a PNStatus with an error flag. |
Async | PNCallback | Deprecated | PNCallback of type PNMessageCountResult . |
Execute | PNCallback | Yes | PNCallback of type PNMessageCountResult . |
ExecuteAsync | None | Optional | Returns PNResult<PNMessageCountResult> . |
Basic Usage
PNResult<PNMessageCountResult> msgCountResponse = await pubnub.MessageCounts()
.Channels(new string[] { "message_count_channel" })
.ChannelsTimetoken(new long[] { 15088506076921021 })
.ExecuteAsync();
PNMessageCountResult msgCountResult = msgCountResponse.Result;
PNStatus status = msgCountResponse.Status;
if (status != null && status.Error)
{
//Check for any error
Console.WriteLine(status.ErrorData.Information);
}
else
{
show all 17 linesReturns
The operation returns a PNResult<PNMessageCountResult>
which contains the following operations:
Property Name | Type | Description |
---|---|---|
Result | PNMessageCountResult | Returns a PNMessageCountResult object. |
Status | PNStatus | Returns a PNStatus object |
PNMessageCountResult
contains the following properties:
Property Name | Type | Description |
---|---|---|
Channels | Dictionary<string, long> | Collection of channels along with the messages count. channels without messages have a count of 0. channels with 10,000 messages or more have a count of 10000. |
Other Examples
Retrieve count of messages for a single channel
pubnub.MessageCounts()
.Channels(new string[] { "message_count_channel" })
.ChannelsTimetoken(new long[] { 15088506076921021 })
.Execute(new PNMessageCountResultExt(
(result, status) => {
if (status != null && status.Error)
{
//Check for any error
Console.WriteLine(status.ErrorData.Information);
}
else
{
Console.WriteLine(pubnub.JsonPluggableLibrary.SerializeToJsonString(result));
}
}));
Retrieve count of messages using different timetokens for each channel
PNResult<PNMessageCountResult> msgCountResponse = await pubnub.MessageCounts()
.Channels(new string[] { "message_count_channel", "message_count_channel2" })
.ChannelsTimetoken(new long[] { 15088506076921021, 15088506076921131 })
.ExecuteAsync();
PNMessageCountResult msgCountResult = msgCountResponse.Result;
PNStatus status = msgCountResponse.Status;
if (status != null && status.Error)
{
//Check for any error
Console.WriteLine(status.ErrorData.Information);
}
else
{
show all 17 linesHistory (deprecated)
Requires Message Persistence
This method requires that Message Persistence is enabled for your key in the Admin Portal. Read the support page on enabling add-on features on your keys.
Alternative method
This method is deprecated. Use fetch history instead.
This function fetches historical messages of a channel.
It is possible to control how messages are returned and in what order, for example you can:
- Search for messages starting on the newest end of the timeline (default behavior -
Reverse
=false
) - Search for messages from the oldest end of the timeline by setting
Reverse
totrue
. - Page through results by providing a
Start
OREnd
timetoken. - Retrieve a slice of the time line by providing both a
Start
ANDEnd
timetoken. - Limit the number of messages to a specific quantity using the
Count
parameter.
Start & End parameter usage clarity
If only the Start
parameter is specified (without End
), you will receive messages that are older than and up to that Start
timetoken value. If only the End
parameter is specified (without Start
) you will receive messages that match that End
timetoken value and newer Specifying values for both Start
and End
parameters will return messages between those timetoken values (inclusive on the End
value). Keep in mind that you will still receive a maximum of 100 messages even if there are more messages that meet the timetoken values. Iterative calls to history adjusting the Start
timetoken is necessary to page through the full set of results if more than 100 messages meet the timetoken values.
Method(s)
To run History
you can use the following method(s) in the C# SDK:
pubnub.History()
.Channel(string)
.IncludeMeta(bool)
.Reverse(bool)
.IncludeTimetoken(bool)
.Start(long)
.End(long)
.count(int)
.QueryParam(Dictionary<string,object>)
Parameter | Type | Required | Description |
---|---|---|---|
Channel | string | Yes | Specifies Channel to return history messages from. |
IncludeMeta | bool | Optional | Whether meta (passed when Publishing the message) should be included in response or not. |
Reverse | bool | Optional | Setting to true will traverse the time line in reverse starting with the oldest message first. |
IncludeTimetoken | bool | Optional | Whether event dates timetokens should be included in response or not. |
Start | long | Optional | Timetoken delimiting the Start of time slice (exclusive) to pull messages from. |
End | long | Optional | Timetoken delimiting the End of time slice (inclusive) to pull messages from. |
Count | int | Optional | Specifies the number of historical messages to return. |
QueryParam | Dictionary<string, object> | Optional | Dictionary object to pass name/value pairs as query string params with PubNub URL request for debug purpose. |
Async | PNCallback | Deprecated | PNCallback of type PNHistoryResult . |
Execute | PNCallback | Yes | PNCallback of type PNHistoryResult . |
ExecuteAsync | None | Optional | Returns PNResult<PNHistoryResult> . |
tip
reverse
parameterMessages are always returned sorted in ascending time direction from history regardless of Reverse
. The Reverse
direction matters when you have more than 100 (or Count
, if it's set) messages in the time interval, in which case Reverse
determines the end of the time interval from which it should start retrieving the messages.
Basic Usage
Retrieve the last 100 messages on a channel:
PNResult<PNHistoryResult> historyResponse = await pubnub.History()
.Channel("history_channel") // where to fetch history from
.Count(100) // how many items to fetch
.ExecuteAsync();
Returns
The History()
operation returns a PNResult<PNHistoryResult>
which contains the following properties:
Property Name | Type | Description |
---|---|---|
Result | PNHistoryResult | Returns a PNHistoryResult object. |
Status | PNStatus | Returns a PNStatus object. |
PNHistoryResult
which contains the following properties:
Property Name | Type | Description |
---|---|---|
Messages | List<PNHistoryItemResult> | List of messages of type PNHistoryItemResult . See PNHistoryItemResult for more details. |
StartTimetoken | long | Start timetoken . |
EndTimetoken | long | End timetoken . |
PNHistoryItemResult
Property Name | Type | Description |
---|---|---|
Timetoken | long | Timetoken of the message. |
Entry | object | Message. |
Other Examples
Retrieve the last 100 messages on a channel synchronously
pubnub.History()
.Channel("history_channel") // where to fetch history from
.Count(100) // how many items to fetch
.Execute(new PNHistoryResultExt(
(result, status) => {
}
));
Use History() to retrieve the three oldest messages by retrieving from the time line in reverse
PNResult<PNHistoryResult> historyResponse = await pubnub.History()
.Channel("my_channel") // where to fetch history from
.Count(3) // how many items to fetch
.Reverse(true) // should go in reverse?
.ExecuteAsync();
Response
{
"Messages":[
{
"Timetoken": 0,
"Entry": "Pub1"
},
{
"Timetoken": 0,
"Entry": "Pub2"
},
{
"Timetoken": 0,
"Entry": "Pub3"
}
],
show all 18 linesUse History() to retrieve messages newer than a given timetoken by paging from oldest message to newest message starting at a single point in time (exclusive)
PNResult<PNHistoryResult> historyResponse = await pubnub.History()
.Channel("my_channel") // where to fetch history from
.Start(13847168620721752L) // first timestamp
.Reverse(true) // should go in reverse?
.ExecuteAsync();
Response
{
"Messages":[
{
"Timetoken": 0,
"Entry": "Pub3"
},
{
"Timetoken": 0,
"Entry": "Pub4"
},
{
"Timetoken": 0,
"Entry": "Pub5"
}
],
show all 18 linesUse History() to retrieve messages until a given timetoken by paging from newest message to oldest message until a specific end point in time (inclusive)
PNResult<PNHistoryResult> historyResponse = await pubnub.History()
.Channel("my_channel") // where to fetch history from
.Count(100) // how many items to fetch
.Start(-1) // first timestamp
.End(13847168819178600L) // last timestamp
.Reverse(true) // should go in reverse?
.ExecuteAsync();
Response
{
"Messages":[
{
"Timetoken": 0,
"Entry": "Pub3"
},
{
"Timetoken": 0,
"Entry": "Pub4"
},
{
"Timetoken": 0,
"Entry": "Pub5"
}
],
show all 18 linesHistory Paging Example
Usage
You can call the method by passing 0 or a valid timetoken as the argument.
public class PubnubRecursiveHistoryFetcher {
private static Pubnub pubnub;
public abstract class CallbackSkeleton {
public abstract void HandleResponse(PNHistoryResult result);
}
public PubnubRecursiveHistoryFetcher() {
// NOTICE: for demo/demo pub/sub keys Message Persistence is disabled,
// so use your pub/sub keys instead
PNConfiguration pnConfiguration = new PNConfiguration pnConfiguration = new PNConfiguration(new UserId("myUniqueUserId"));
pnConfiguration.SubscribeKey = "demo";
pubnub = new Pubnub(pnConfiguration);
}
show all 57 linesInclude timetoken in history response
PNResult<PNHistoryResult> historyResponse = await pubnub.History()
.Channel("history_channel") // where to fetch history from
.Count(100) // how many items to fetch
.IncludeTimetoken(true) // include timetoken with each entry
.ExecuteAsync();