MCPcopy Create free account
hub / github.com/SignTools/SignTools / GetStatusByAppId

Method GetStatusByAppId

src/storage/job_resolver.go:91–97  ·  view source on GitHub ↗
(id string)

Source from the content-addressed store, hash-verified

89}
90
91func (r *JobResolver) GetStatusByAppId(id string) (bool, bool) {
92 r.mu.Lock()
93 defer r.mu.Unlock()
94 _, jobPending := r.appIdToSignJobMap.Get(id)
95 _, jobExists := r.appIdToReturnJobMap[id]
96 return jobPending, jobExists
97}
98
99func (r *JobResolver) GetById(id string) (*ReturnJob, bool) {
100 r.mu.Lock()

Callers 1

renderIndexFunction · 0.80

Calls 1

GetMethod · 0.45

Tested by

no test coverage detected