MCPcopy Create free account
hub / github.com/shidenggui/easyquant / _process

Method _process

easyquant/multiprocess/strategy_wrapper.py:72–82  ·  view source on GitHub ↗

启动进程

(self)

Source from the content-addressed store, hash-verified

70 pass
71
72 def _process(self):
73 """
74 启动进程
75 """
76 event_thread = Thread(target=self._process_event, name="ProcessWrapper._process_event")
77 event_thread.start()
78 clock_thread = Thread(target=self._process_clock, name="ProcessWrapper._process_clock")
79 clock_thread.start()
80
81 event_thread.join()
82 clock_thread.join()

Callers

nothing calls this directly

Calls 1

startMethod · 0.45

Tested by

no test coverage detected