ntp/responder/server/interfaces.go (28 lines of code) (raw):
/*
Copyright (c) Facebook, Inc. and its affiliates.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package server
import (
"net"
)
// Stats is a metric collection interface
type Stats interface {
// Start starts a stat reporter
// Use this for passive reporters
Start(int)
// IncInvalidFormat atomically add 1 to the counter
IncInvalidFormat()
// IncRequests atomically add 1 to the counter
IncRequests()
// IncResponses atomically add 1 to the counter
IncResponses()
// IncListeners atomically add 1 to the counter
IncListeners()
// IncWorkers atomically add 1 to the counter
IncWorkers()
// IncReadError atomically add 1 to the counter
IncReadError()
// DecListeners atomically removes 1 from the counter
DecListeners()
// DecWorkers atomically removes 1 from the counter
DecWorkers()
// SetAnnounce atomically sets counter to 1
SetAnnounce()
// ResetAnnounce atomically sets counter to 0
ResetAnnounce()
}
// Announce is an announce interface
type Announce interface {
// Do the announcement
// Usually here advertise config is renewed
// Unblocking. Run periodically
Advertise([]net.IP) error
// Stop announcement
// Usually here advertise config is deleted
Withdraw() error
}
// Checker is an internal healthcheck interface
type Checker interface {
// Check is a method which performs basic validations that responder is alive
Check() error
// IncListeners atomically add 1 to the counter
IncListeners()
// IncWorkers atomically add 1 to the counter
IncWorkers()
// DecListeners atomically removes 1 from the counter
DecListeners()
// DecWorkers atomically removes 1 from the counter
DecWorkers()
}