Blocks until the server has shut down. This method currently blocks forever. Raises: tf.errors.OpError: Or one of its subclasses if an error occurs while joining the TensorFlow server.
(self)
| 173 | c_api.TF_ServerStart(self._server) |
| 174 | |
| 175 | def join(self): |
| 176 | """Blocks until the server has shut down. |
| 177 | |
| 178 | This method currently blocks forever. |
| 179 | |
| 180 | Raises: |
| 181 | tf.errors.OpError: Or one of its subclasses if an error occurs while |
| 182 | joining the TensorFlow server. |
| 183 | """ |
| 184 | c_api.TF_ServerJoin(self._server) |
| 185 | |
| 186 | @property |
| 187 | def server_def(self): |
no outgoing calls