Skip to content

Commit

Permalink
remove old style part stop()
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudshift committed Mar 14, 2012
1 parent c889221 commit ed03e94
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 31 deletions.
6 changes: 0 additions & 6 deletions cloudshift/channel/PushListenerImpl.hx
Expand Up @@ -66,12 +66,6 @@ class PushListenerImpl implements Conduit {
return oc;
}

public function stop_(?d:Dynamic):Outcome<String,Dynamic> {
var prm = Core.outcome();
prm.resolve(Right(this));
return prm;
}

function removeSession(session) {
if (session != null) {
Core.info("removing session");
Expand Down
7 changes: 0 additions & 7 deletions cloudshift/channel/TChannelClient.hx
Expand Up @@ -46,13 +46,6 @@ class TChannelClient implements ChannelClient,
return oc;
}

public function
stop_(?d:Dynamic) {
var oc = Core.outcome();
oc.resolve(Right(d));
return oc;
}

public function
channel<T>(id:String):Outcome<String,Chan<T>> {
return _sink.authorize(_sink.chan(id));
Expand Down
7 changes: 0 additions & 7 deletions cloudshift/channel/TChannelServer.hx
Expand Up @@ -94,13 +94,6 @@ class TChannelServer implements ChannelServer,implements Part<Dynamic,String,Cha
});
}

public function
stop_(?d:Dynamic) {
var oc = Core.outcome();
oc.resolve(Right(d));
return oc;
}

public function
addHttpServer(http):ChannelServer {
_http = http;
Expand Down
5 changes: 0 additions & 5 deletions cloudshift/session/SessionClientImpl.hx
Expand Up @@ -29,11 +29,6 @@ class SessionClientImpl implements Part<Dynamic,String,SessionClient,ESession>,i
return oc;
}

public function
stop_(?d:Dynamic):Outcome<String,Dynamic> {
return null;
}

function doLogin(p:Future<ESession>,e:ESession) {
switch(e) {
case UserOk(sid):
Expand Down
6 changes: 0 additions & 6 deletions cloudshift/session/SessionMgrImpl.hx
Expand Up @@ -34,12 +34,6 @@ implements Part<HttpServer,String,SessionMgr,ESessionOp>, implements SessionMgr
return oc;
}


public function
stop_(?d:Dynamic):Outcome<String,Dynamic> {
return null;
}

public function http() {
return _http;
}
Expand Down

0 comments on commit ed03e94

Please sign in to comment.