Documentation ¶
Overview ¶
Package idle contains a component for managing idleness (entering and exiting) based on RPC activity.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Enforcer ¶
type Enforcer interface { ExitIdleMode() error EnterIdleMode() }
Enforcer is the functionality provided by grpc.ClientConn to enter and exit from idle mode.
type Manager ¶
type Manager struct {
// contains filtered or unexported fields
}
Manager implements idleness detection and calls the configured Enforcer to enter/exit idle mode when appropriate. Must be created by NewManager.
func NewManager ¶
NewManager creates a new idleness manager implementation for the given idle timeout. It begins in idle mode.
func (*Manager) EnterIdleModeForTesting ¶ added in v1.60.0
func (m *Manager) EnterIdleModeForTesting()
func (*Manager) ExitIdleMode ¶ added in v1.60.0
ExitIdleMode instructs m to call the enforcer's ExitIdleMode and update m's internal state.
func (*Manager) OnCallBegin ¶
OnCallBegin is invoked at the start of every RPC.
Click to show internal directories.
Click to hide internal directories.