MCPcopy Create free account
hub / github.com/chainreactors/EvilProxy / queueRefreshReschedule

Method queueRefreshReschedule

sdk/cliproxy/auth/conductor.go:5286–5297  ·  view source on GitHub ↗
(authID string)

Source from the content-addressed store, hash-verified

5284}
5285
5286func (m *Manager) queueRefreshReschedule(authID string) {
5287 if m == nil || authID == "" {
5288 return
5289 }
5290 m.mu.RLock()
5291 loop := m.refreshLoop
5292 m.mu.RUnlock()
5293 if loop == nil {
5294 return
5295 }
5296 loop.queueReschedule(authID)
5297}
5298
5299func (m *Manager) queueRefreshUnschedule(authID string) {
5300 if m == nil || authID == "" {

Callers 4

RegisterMethod · 0.95
UpdateMethod · 0.95
markRefreshPendingMethod · 0.95
refreshAuthMethod · 0.95

Calls 1

queueRescheduleMethod · 0.80

Tested by

no test coverage detected