assert serializableMethodArg instanceof SerializableMethod : "2nd Argument was expected to be of type "
+ SerializableMethod.class.getName() + ", was instead " + serializableMethodArg;
SerializableMethod serializableMethod = (SerializableMethod) serializableMethodArg;
// Obtain the Method represented by the SerializableMethod
Method dynamicInvokeMethod = serializableMethod.toMethod();
long hash = MethodHashing.calculateHash(dynamicInvokeMethod);
// Log
log.debug("Received invocation request to method " + serializableMethod + "; using hash: " + hash);