mirror of
https://github.com/openfaas/faas.git
synced 2025-06-15 11:46:46 +00:00
8 lines
268 B
Go
8 lines
268 B
Go
package handlers
|
|
|
|
// ServiceQuery provides interface for replica querying/setting
|
|
type ServiceQuery interface {
|
|
GetReplicas(service string) (currentReplicas uint64, maxReplicas uint64, minReplicas uint64, err error)
|
|
SetReplicas(service string, count uint64) error
|
|
}
|