Dispatchers used to have individuality and flavour. Nowadays they are all InvocationManager, which is not useful. The provider, however, may be.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6756 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Par Winzell
2011-12-19 00:42:53 +00:00
parent 547ddbb183
commit 876e5ecaaa
@@ -394,7 +394,8 @@ public class InvocationManager
// dispatch the request // dispatch the request
try { try {
if (rlist != null) { if (rlist != null) {
rlist.setInvocationId(StringUtil.shortClassName(disp) + ", methodId=" + methodId); rlist.setInvocationId(
StringUtil.shortClassName(disp.getProvider()) + ", methodId=" + methodId);
} }
disp.dispatchRequest(source, methodId, args); disp.dispatchRequest(source, methodId, args);