用法:
get_server()
返回一個
Server
對象,它代表管理器控製下的實際服務器。Server
對象支持serve_forever()
方法:>>> from multiprocessing.managers import BaseManager >>> manager = BaseManager(address=('', 50000), authkey=b'abc') >>> server = manager.get_server() >>> server.serve_forever()
Server
還具有address
屬性。
相關用法
- Python multiprocessing.managers.BaseManager.connect用法及代碼示例
- Python multiprocessing.managers.BaseProxy._callmethod用法及代碼示例
- Python multiprocessing.managers.Namespace用法及代碼示例
- Python multiprocessing.Value用法及代碼示例
- Python multiprocessing.Process用法及代碼示例
- Python multiprocessing.freeze_support用法及代碼示例
- Python mxnet.symbol.op.broadcast_logical_xor用法及代碼示例
- Python mxnet.test_utils.get_zip_data用法及代碼示例
- Python mxnet.ndarray.op.uniform用法及代碼示例
- Python mxnet.symbol.op.log_softmax用法及代碼示例
- Python mxnet.symbol.space_to_depth用法及代碼示例
- Python mxnet.ndarray.op.sample_negative_binomial用法及代碼示例
- Python mxnet.ndarray.NDArray.ndim用法及代碼示例
- Python mxnet.module.BaseModule.get_outputs用法及代碼示例
- Python mxnet.module.BaseModule.forward用法及代碼示例
- Python mxnet.symbol.random_pdf_poisson用法及代碼示例
- Python mxnet.ndarray.op.khatri_rao用法及代碼示例
- Python mxnet.ndarray.op.unravel_index用法及代碼示例
- Python mxnet.symbol.argmin用法及代碼示例
- Python mxnet.symbol.linalg_potrf用法及代碼示例
注:本文由純淨天空篩選整理自python.org大神的英文原創作品 multiprocessing.managers.BaseManager.get_server。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。