用法:
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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。