コード例 #1
0
ファイル: IPCService.py プロジェクト: ralph-mikera/Routeflow2
def for_client(id_, threading_=StdThreading):
    return buildIPC(IPCRole.client, id_, threading_)
コード例 #2
0
ファイル: IPCService.py プロジェクト: ralph-mikera/Routeflow2
def for_proxy(id_, threading_=StdThreading):
    return buildIPC(IPCRole.proxy, id_, threading_)
コード例 #3
0
ファイル: IPCService.py プロジェクト: ralph-mikera/Routeflow2
def for_server(id_, threading_=StdThreading):
    return buildIPC(IPCRole.server, id_, threading_)