More bits and hackery (and a hand-generated TimeBaseMarshaller, so that I

can get fully logged in).


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3904 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-03-02 03:07:01 +00:00
parent 477fb777f6
commit 961f3ffdfe
8 changed files with 122 additions and 4 deletions
@@ -94,11 +94,14 @@ public class Client extends EventDispatcher
public function getService (clazz :Class) :InvocationService
{
if (_bstrap == null) {
return null;
if (_bstrap != null) {
for each (var service :InvocationService in _bstrap.services) {
if (service is clazz) {
return service;
}
}
}
// TODO
return null;
}