return null;
}
public int size() {
checkTransactionState();
SizeOperation operation = new SizeOperation(name);
try {
Future<Integer> f = getNodeEngine().getOperationService().invokeOnPartition(QueueService.SERVICE_NAME, operation, partitionId);
Integer size = f.get();
return size + offeredQueue.size();
} catch (Throwable t) {