Documentation ¶
Index ¶
- func EnvServerHost() string
- func Hostname() string
- type Application
- func (app *Application) Executor(e executor.Executor)
- func (app *Application) GracefulStop(ctx context.Context) (err error)
- func (app *Application) Job(runner job.Runner) error
- func (app *Application) RegisterHooks(stage hooks.Stage, fns ...func())
- func (app *Application) Run(servers ...server.Server) error
- func (app *Application) Schedule(w worker.Worker) error
- func (app *Application) Serve(s ...server.Server) error
- func (app *Application) SetRegistry(reg registry.Registry)
- func (app *Application) Startup(fns ...func() error) error
- func (app *Application) Stop() (err error)
- func (a *Application) WithOptions(options ...Option)
- type Disable
- type Option
- type RuntimeStats
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Application ¶
type Application struct { HideBanner bool // contains filtered or unexported fields }
Application is the framework's instance, it contains the servers, workers, client and configuration settings. Create an instance of Application, by using &Application{}
func DefaultApp ¶
func DefaultApp() *Application
func New ¶
func New(fns ...func() error) (*Application, error)
New create a new Application instance
func (*Application) GracefulStop ¶
func (app *Application) GracefulStop(ctx context.Context) (err error)
GracefulStop application after necessary cleanup
func (*Application) RegisterHooks ¶
func (app *Application) RegisterHooks(stage hooks.Stage, fns ...func())
RegisterHooks register a stage Hook
func (*Application) Run ¶
func (app *Application) Run(servers ...server.Server) error
Run run application
func (*Application) Serve ¶
func (app *Application) Serve(s ...server.Server) error
Serve start server
func (*Application) SetRegistry ¶
func (app *Application) SetRegistry(reg registry.Registry)
SetRegistry set customize registry
func (*Application) Stop ¶
func (app *Application) Stop() (err error)
Stop application immediately after necessary cleanup
func (*Application) WithOptions ¶
func (a *Application) WithOptions(options ...Option)
type Option ¶
type Option func(a *Application)
func WithConfigParser ¶
func WithConfigParser(unmarshaller conf.Unmarshaller) Option
func WithDisable ¶
type RuntimeStats ¶
type RuntimeStats struct { IP string `json:"ip"` Hostname string `json:"hostname"` Time string `json:"time"` // 每次展示数据的时间 Err string `json:"err"` }
通用状态信息
func NewRuntimeStats ¶
func NewRuntimeStats() RuntimeStats
Click to show internal directories.
Click to hide internal directories.