built-in predicate
threaded_engine_destroy/1
ï
Descriptionï
threaded_engine_destroy(Engine)
Stops and destroys an engine.
Note
This predicate requires a backend Prolog compiler providing
compatible multi-threading primitives. The value of the read-only
engines flag is set to supported
when that
is the case.
Modes and number of proofsï
threaded_engine_destroy(@nonvar) - one
Errorsï
Engine
is a variable:instantiation_error
Engine
is neither a variable nor the name of an existing engine:existence_error(engine, Engine)
Examplesï
% stop the worker_1 engine:
| ?- threaded_engine_destroy(worker_1).
% stop all engines:
| ?- forall(
threaded_engine(Engine),
threaded_engine_destroy(Engine)
).