This topic type will be removed in a future release
@Deprecated public interface PagedUpdateFactory extends UpdateFactory
Care should be taken to only use such factories with paged topics as if used to generate updates for non paged topics the updates would fail.
Failures to perform the updates would be reported back to the session in the same way as for any other updates.
There are 4 types of paged topic and the correct update factory for the type must be used as described below.
Unordered Records
This is where the topic is a paged record
topic and the ordering policy
of the topic is
unordered
. In this case an
PagedRecordUnorderedUpdateFactory
is used.
Unordered Strings
This is where the topic is a paged string
topic and the ordering policy
of the topic is
unordered
. In this case an
PagedStringUnorderedUpdateFactory
is used.
Ordered Records
This is where the topic is a paged record
topic and the ordering policy
of the topic is either
declared
or comparator
.
In this case an PagedRecordOrderedUpdateFactory
is used.
Ordered Strings
This is where the topic is a paged string
topic and the ordering policy
of the topic is either
declared
or comparator
.
In this case an PagedStringOrderedUpdateFactory
is used.
Update removeAll()
Copyright © 2016 Push Technology Ltd. All Rights Reserved.