marshaller.objectFromByteBuffer(bytes);
}
public void testMultiRpcCommand() throws Exception {
String cacheName = EmbeddedCacheManager.DEFAULT_CACHE_NAME;
ClusteredGetCommand c2 = new ClusteredGetCommand("key", cacheName,
Collections.<Flag>emptySet(), false, null, AnyEquivalence.getInstance());
PutKeyValueCommand c5 = new PutKeyValueCommand(
"k", "v", false, null, new EmbeddedMetadata.Builder().build(), Collections.<Flag>emptySet());
MultipleRpcCommand c99 = new MultipleRpcCommand(Arrays.<ReplicableCommand>asList(c2, c5), cacheName);
marshallAndAssertEquality(c99);