MCPcopy Create free account
hub / github.com/diillson/chatcli / IsConcurrencySafe

Method IsConcurrencySafe

cli/plugins/builtin_coder_caps.go:35–37  ·  view source on GitHub ↗

IsConcurrencySafe mirrors IsReadOnly: read/search/tree on independent paths can run in parallel; mutating subcommands stay serial so an exec and a write in the same batch never race.

(args []string)

Source from the content-addressed store, hash-verified

33// independent paths can run in parallel; mutating subcommands stay
34// serial so an exec and a write in the same batch never race.
35func (p *BuiltinCoderPlugin) IsConcurrencySafe(args []string) bool {
36 return p.IsReadOnly(args)
37}
38
39// DescribeCall surfaces what @coder is about to do: which subcommand,
40// against which target. Strings are i18n-resolved at call time.

Callers

nothing calls this directly

Calls 1

IsReadOnlyMethod · 0.95

Tested by

no test coverage detected