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 to true.
  • Page through results by providing a start OR end timetoken.
  • Retrieve a slice of the time line by providing both a start AND end 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()
ParameterTypeRequiredDefaultDescription
orderChannelHistoryOrderYesChannelHistoryOrder.descendingOrder of messages based on timetoken. Refer to Channel History Order for more details.
chunkSizeintOptionalfalseNumber of returned messages.

Channel History Order

ParameterTypeDescription
ascendingconst ChannelHistoryOrderAscending order of messages, based on timetokens.
descendingconst ChannelHistoryOrderDescending order of messages, based on timetokens.
valuesconst 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:

PropertyTypeDescription
chunkSizeintMaximum number of fetched messages when calling more().
endTimetokenTimetokenUpper boundary of fetched messages timetokens.
hasMoreboolReturns true if there are more messages to be fetched. Keep in mind, that before the first more call, it will always be true.
messagesList<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.
orderChannelHistoryOrderOrder of messages based on timetoken. Refer to Channel History Order for more details.
startTimetokenLongLower boundary of fetched messages timetokens.

PaginatedChannelHistory has the following methods:

MethodReturnsDescription
moreFuture<FetchHistoryResult>Fetches more messages and stores them in the messages property of PaginatedChannelHistory.
resetvoidResets the history to the beginning.

Base Message

ParameterTypeDescription
contentdynamicThe message content.
messagedynamicAlias for content.
originalMessagedynamicOriginal JSON message received from the server.
publishedAtTimetokenTimetoken at which the server accepted the message.
timetokenTimetokenAlias 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 lines

History 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 OR end timetoken.
  • Retrieve a slice of the time line by providing both a start AND end 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}
)
ParameterTypeRequiredDefaultDescription
channelsSet<String>YesSpecifies channels to return history messages from.
keysetKeysetOptionalOverride for the PubNub default keyset configuration.
usingStringOptionalKeyset name from the keysetStore to be used for this method call.
countintOptionalThe 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.
startTimetokenOptionaltimetoken denoting the start of the range requested (return values will be less than start).
endTimetokenOptionaltimetoken denoting the end of the range requested (return values will be greater than or equal to end).
reverseboolOptionalfalseSetting to true traverses the time line in reverse, starting with the oldest message first.
includeMetaboolOptionalfalseWhether to include message metadata within response or not.
includeMessageActionsboolOptionalfalseThe flag denoting to retrieve history messages with message actions. If true, the method is limited to one channel only.
includeMessageTypeboolOptionaltrueThe flag denoting to retrieve history messages with message type.
includeUUIDboolOptionalThe 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>:

PropertyTypeDescription
channelsMap<String, List<BatchHistoryResultEntry>>Map of channels and their respective lists of BatchHistoryResultEntry. See BatchHistoryResultEntry for more details.

BatchHistoryResultEntry

MethodTypeDescription
actionsMap<String, dynamic>?If includeMessageActions was true, this contains message actions. Otherwise, it's null.
messagedynamicThe message content.
messageTypeMessageTypeThe message type.
metaMap<String, dynamic>If includeMeta was true, this contains message metadata. Otherwise, it's null.
timetokenTimetokenTimetoken of the message. Always returned by default.
uuidStringUUID 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() 
ParameterTypeRequiredDescription
channelsList<String>YesSpecifies channels to delete messages from.
startLongOptionalTimetoken delimiting the start of time slice (inclusive) to delete messages from.
endLongOptionalTimetoken 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 channelsTimetokenparameter.

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}
)
ParameterTypeRequiredDescription
channelsMap<String, Timetoken> or Set<String>YesSpecifies channels set. Or Map of channel names and timetoken for message count.
keysetKeysetOptionalOverride for the PubNub default keyset configuration.
usingStringOptionalKeyset name from the keysetStore to be used for this method call.
timetokenTimetokenOptionaltimetoken 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 NameTypeDescription
channelsMap<String, int>Channel names with message count.
Last updated on