@Override
public Map<Long, FudgeMsg> get(Collection<Long> identifiers) {
final Map<Long, byte[]> dataValues = getBinaryData().get(identifiers);
final Map<Long, FudgeMsg> resultValues = new HashMap<Long, FudgeMsg>();
for (Map.Entry<Long, byte[]> data : dataValues.entrySet()) {
resultValues.put(data.getKey(), new EncodedFudgeMsg(data.getValue(), getFudgeContext()));
}
return resultValues;
}