Files
clice/src/server/stateless_worker.h
2026-03-22 23:37:08 +08:00

12 lines
329 B
C++

#pragma once
namespace clice {
/// Run the stateless worker process mode.
/// The worker receives one-shot compilation tasks (BuildPCH, BuildPCM,
/// Completion, SignatureHelp, Index) via stdin/stdout bincode IPC,
/// executes them on a thread pool, and returns results.
int run_stateless_worker_mode();
} // namespace clice