Modify network queries to use async plugin.

This commit is contained in:
Bryce Curtis
2010-09-10 14:20:34 -05:00
parent 0a7762743e
commit d72c77d6f3
2 changed files with 45 additions and 29 deletions
+7
View File
@@ -76,7 +76,14 @@ public class NetworkManager implements Plugin {
}
}
/**
* Identifies if action to be executed returns a value.
*
* @param action The action to execute
* @return T=returns value
*/
public boolean hasReturnValue(String action) {
// All methods take a while, so always use async
return false;
}