List<SampleAppendRequest> reqs = new ArrayList<SampleAppendRequest>();
for (PublishQueueEntry<SquwkPointVO> entry : entries) {
SquwkPointVO vo = entry.getVo();
PointValueTime pvt = entry.getPvt();
SampleAppendRequest req = new SampleAppendRequest(vo.getGuid(), pvt.getTime(), coerceDataValue(
pvt.getValue(), vo.getDataType()));
reqs.add(req);
}
// Send the request. Set message non-null if there is a failure.