* store.
*
*/
protected void populate(Collection<SourceSequence> seqs) {
LOG.fine(seqs.size() + " active sequences");
RMStore store = handler.getStore();
for (SourceSequence seq : seqs) {
Collection<RMMessage> msgs = store.getMessages(seq.getIdentifier(), true);
LOG.fine("Recovered " + msgs.size() + " messages for this sequence");
for (RMMessage msg : msgs) {
ObjectMessageContext objCtx = new ObjectMessageContextImpl();
objCtx.putAll(msg.getContext());
cacheUnacknowledged(objCtx);