Coordinator
简介
这个类用来协调多个thread同时工作,同时停止。常用的方法有:
- should_stop():如果满足thread停止条件的话,返回True
- request_stop():请求thread停止,调用该方法后,should_stop()返回True
- join(
- ):等待所有的threads停止。
理解
其实我觉得这个类的作用好像没有那么大,或者我没有用到这种场景。反正就是满足thread的终止条件时,调用request_stop()函数,让should_stop()返回True。
代码示例
1 | import tensorflow as tf |
参考文献
1.https://wiki.jikexueyuan.com/project/tensorflow-zh/how_tos/threading_and_queues.html