Message Persistence API for PubNub Dart 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)
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 of a channel.
It's 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 Dart SDK:
pubnub.channel(String).history(
{ChannelHistoryOrder order = ChannelHistoryOrder.descending,
int chunkSize = 100}
)
// OR
pubnub.channel(String).messages()
Parameter | Type | Required | Default | Description |
---|---|---|---|---|
order | ChannelHistoryOrder | Yes | ChannelHistoryOrder.descending | Order of messages based on timetoken. Refer to Channel History Order for more details. |
chunkSize | int | Optional | false | Number of returned messages. |
Channel History Order
Parameter | Type | Description |
---|---|---|
ascending | const ChannelHistoryOrder | Ascending order of messages, based on timetokens. |
descending | const ChannelHistoryOrder | Descending order of messages, based on timetokens. |
values | const List<ChannelHistoryOrder> | A constant list of the values in this enum, in order of their declaration. |
Basic Usage
Retrieve the last 100 messages on a channel:
var history = pubnub.channel('my_channel').history(chunkSize: 100);
Returns
The history()
operation returns a PaginatedChannelHistory
which contains the following properties:
Property | Type | Description |
---|---|---|
chunkSize | int | Maximum number of fetched messages when calling more() . |
endTimetoken | Timetoken | Upper boundary of fetched messages timetokens. |
hasMore | bool | Returns true if there are more messages to be fetched. Keep in mind, that before the first more call, it will always be true . |
messages | List<BaseMessage> | Readonly list of messages. It will be empty before first more call. Refer to the method description below for more details on the more call. |
order | ChannelHistoryOrder | Order of messages based on timetoken. Refer to Channel History Order for more details. |
startTimetoken | Long | Lower boundary of fetched messages timetokens. |
PaginatedChannelHistory
has the following methods:
Method | Returns | Description |
---|---|---|
more | Future<FetchHistoryResult> | Fetches more messages and stores them in the messages property of PaginatedChannelHistory . |
reset | void | Resets the history to the beginning. |
Base Message
Parameter | Type | Description |
---|---|---|
content | dynamic | The message content. |
message | dynamic | Alias for content . |
originalMessage | dynamic | Original JSON message received from the server. |
publishedAt | Timetoken | Timetoken at which the server accepted the message. |
timetoken | Timetoken | Alias for timetoken . |
Other Examples
Use history()
to retrieve the three oldest messages by retrieving from the time line in reverse
var history = pubnub
.channel('my_channel')
.history(order: ChannelHistoryOrder.ascending, chunkSize: 3)
Response
{
"messages":[
{
"Timetoken": 0,
"message": "Pub1"
},
{
"Timetoken": 0,
"message": "Pub2"
},
{
"Timetoken": 0,
"message": "Pub3"
}
],
show all 18 linesHistory Paging Example
var history = pubnub.channel('asdf').history(chunkSize: 100, order: ChannelHistoryOrder.descending);
// To fetch next page:
await history.more();
// To access messages:
print(history.messages);
Batch 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 multiple channels. The includeMessageActions
or includeActions
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. For example, you can:
- Search for messages starting on the newest end of the timeline.
- Search for messages from the oldest end of the timeline.
- Page through results by providing a
start
ORend
timetoken. - Retrieve a slice of the time line by providing both a
start
ANDend
timetoken. - Retrieve a specific (maximum) number of messages using the
count
parameter.
Batch history returns up to 100 messages on a single channel, or 25 per channel on a maximum of 500 channels. Use the start
and end
timestamps to page through the next batch of messages.
Start & End parameter usage clarity
If you specify only the start
parameter (without end
), you will receive messages that are older than the start
timetoken.
If you specify only the end
parameter (without start
), you will receive messages from that end
timetoken and newer.
Specify values for both start
and end
parameters to retrieve messages between those timetokens (inclusive of the end
value).
Keep in mind that you will still receive a maximum of 100 messages (or 25, for multiple channels) even if there are more messages that meet the timetoken values. Iterative calls to history adjusting the start
timetoken are necessary to page through the full set of results if more messages meet the timetoken values.
Method(s)
To run fetchMessages()
you can use the following method(s) in the Dart SDK:
pubnub.batch.fetchMessages(
Set<String> channels,
{Keyset? keyset,
String? using,
int? count,
Timetoken? start,
Timetoken? end,
bool? reverse,
bool? includeMeta,
bool includeMessageActions = false,
bool includeMessageType = true,
bool includeUUID = true}
)
Parameter | Type | Required | Default | Description |
---|---|---|---|---|
channels | Set<String> | Yes | Specifies channels to return history messages from. | |
keyset | Keyset | Optional | Override for the PubNub default keyset configuration. | |
using | String | Optional | Keyset name from the keysetStore to be used for this method call. | |
count | int | Optional | The paging object used for pagination. Set count to specify the number of historical messages to return per channel.If includeMessageActions is false , then 100 is the default (and maximum) value. Otherwise it's 25 .Set start to delimit the start of time slice (exclusive) to pull messages from.Set end to delimit the end of time slice (inclusive) to pull messages from. | |
start | Timetoken | Optional | timetoken denoting the start of the range requested (return values will be less than start ). | |
end | Timetoken | Optional | timetoken denoting the end of the range requested (return values will be greater than or equal to end ). | |
reverse | bool | Optional | false | Setting to true traverses the time line in reverse, starting with the oldest message first. |
includeMeta | bool | Optional | false | Whether to include message metadata within response or not. |
includeMessageActions | bool | Optional | false | The flag denoting to retrieve history messages with message actions. If true , the method is limited to one channel only. |
includeMessageType | bool | Optional | true | The flag denoting to retrieve history messages with message type. |
includeUUID | bool | Optional | The flag denoting to include message sender's UUID. |
Basic Usage
Retrieve the last 25 messages on a channel:
var result = await pubnub.batch.fetchMessages({'my_channel'}, count: 25);
Returns
The fetchMessages()
operation returns a map of channels and a List<BatchHistoryResultEntry>
:
Property | Type | Description |
---|---|---|
channels | Map<String, List<BatchHistoryResultEntry>> | Map of channels and their respective lists of BatchHistoryResultEntry . See BatchHistoryResultEntry for more details. |
BatchHistoryResultEntry
Method | Type | Description |
---|---|---|
actions | Map<String, dynamic>? | If includeMessageActions was true , this contains message actions. Otherwise, it's null . |
message | dynamic | The message content. |
messageType | MessageType | The message type. |
meta | Map<String, dynamic> | If includeMeta was true , this contains message metadata. Otherwise, it's null. |
timetoken | Timetoken | Timetoken of the message. Always returned by default. |
uuid | String | UUID of the sender. |
Other Examples
Paging History Responses
var messages = <BatchHistoryResultEntry>[];
var channel = 'my_channel';
var loopResult, start, count;
do {
loopResult =
await pubnub.batch.fetchMessages({channel}, start: start, count: count);
messages.addAll((loopResult as BatchHistoryResult).channels[channel]!);
if ((loopResult).more != null) {
var more = loopResult.more as MoreHistory;
start = Timetoken(BigInt.parse(more.start));
count = more.count;
}
} while (loopResult.more != null);
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 deleteMessages()
you can use the following method(s) in the Dart SDK.
pubnub.delete()
Parameter | Type | Required | Description |
---|---|---|---|
channels | List<String> | Yes | Specifies channels to delete messages from. |
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. |
Basic Usage
await pubnub
.channel('channel-name')
.messages(
from: Timetoken(BigInt.parse('123345')),
to: Timetoken(BigInt.parse('123538293')),
)
.delete();
Other Examples
Delete 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.
await pubnub
.channel('channel-name')
.messages(
from: Timetoken(BigInt.parse('15526611838554310')),
to: Timetoken(BigInt.parse('15526611838554310')),
)
.delete();
Message 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 7 days.
Method(s)
To run messageCounts()
you can use the following method(s) in the Dart SDK:
pubnub.batch.countMessages(
dynamic channels,
{Keyset? keyset,
String? using,
Timetoken? timetoken}
)
Parameter | Type | Required | Description |
---|---|---|---|
channels | Map<String, Timetoken> or Set<String> | Yes | Specifies channels set. Or Map of channel names and timetoken for message count. |
keyset | Keyset | Optional | Override for the PubNub default keyset configuration. |
using | String | Optional | Keyset name from the keysetStore to be used for this method call. |
timetoken | Timetoken | Optional | timetoken is required when channels is a Set of channel names. |
Basic Usage
var result = await pubnub.batch.countMessages({'my_channel'},
timetoken: Timetoken(BigInt.from(13406746780720711)));
Returns
This operation returns a CountMessagesResult
which contains the following property:
Property Name | Type | Description |
---|---|---|
channels | Map<String, int> | Channel names with message count. |