super(looper);
mMsgHistory = new LinkedList<Integer>();
// We add a -1 at the beginning to mark the very beginning of the
// history.
mMsgHistory.offerLast(-1);
String info = new String("HIST");
info += "_ID" + cameraId;
for (Integer msg : mMsgHistory) {
info = info + '_" + msg.toString();
}
info += "_HEND";
return info;