Source File
event.go
Belonging Package
go.uber.org/fx/fxevent
// Copyright (c) 2021 Uber Technologies, Inc.//// Permission is hereby granted, free of charge, to any person obtaining a copy// of this software and associated documentation files (the "Software"), to deal// in the Software without restriction, including without limitation the rights// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell// copies of the Software, and to permit persons to whom the Software is// furnished to do so, subject to the following conditions://// The above copyright notice and this permission notice shall be included in// all copies or substantial portions of the Software.//// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN// THE SOFTWARE.package fxeventimport ()// Event defines an event emitted by fx.type Event interface {event() // Only fxlog can implement this interface.}// Passing events by type to make Event hashable in the future.func (*OnStartExecuting) () {}func (*OnStartExecuted) () {}func (*OnStopExecuting) () {}func (*OnStopExecuted) () {}func (*Supplied) () {}func (*Provided) () {}func (*Replaced) () {}func (*Decorated) () {}func (*BeforeRun) () {}func (*Run) () {}func (*Invoking) () {}func (*Invoked) () {}func (*Stopping) () {}func (*Stopped) () {}func (*RollingBack) () {}func (*RolledBack) () {}func (*Started) () {}func (*LoggerInitialized) () {}// OnStartExecuting is emitted before an OnStart hook is executed.type OnStartExecuting struct {// FunctionName is the name of the function that will be executed.FunctionName string// CallerName is the name of the function that scheduled the hook for// execution.CallerName string}// OnStartExecuted is emitted after an OnStart hook has been executed.type OnStartExecuted struct {// FunctionName is the name of the function that was executed.FunctionName string// CallerName is the name of the function that scheduled the hook for// execution.CallerName string// Method specifies the kind of the hook. This is one of "OnStart" and// "OnStop".Method string// Runtime specifies how long it took to run this hook.Runtime time.Duration// Err is non-nil if the hook failed to execute.Err error}// OnStopExecuting is emitted before an OnStop hook is executed.type OnStopExecuting struct {// FunctionName is the name of the function that will be executed.FunctionName string// CallerName is the name of the function that scheduled the hook for// execution.CallerName string}// OnStopExecuted is emitted after an OnStop hook has been executed.type OnStopExecuted struct {// FunctionName is the name of the function that was executed.FunctionName string// CallerName is the name of the function that scheduled the hook for// execution.CallerName string// Runtime specifies how long it took to run this hook.Runtime time.Duration// Err is non-nil if the hook failed to execute.Err error}// Supplied is emitted after a value is added with fx.Supply.type Supplied struct {// TypeName is the name of the type of value that was added.TypeName string// StackTrace is the stack trace of the call to Supply.StackTrace []string// ModuleTrace contains the module locations through which this value was added.ModuleTrace []string// ModuleName is the name of the module in which the value was added to.ModuleName string// Err is non-nil if we failed to supply the value.Err error}// Provided is emitted when a constructor is provided to Fx.type Provided struct {// ConstructorName is the name of the constructor that was provided to// Fx.ConstructorName string// StackTrace is the stack trace of where the constructor was provided to Fx.StackTrace []string// ModuleTrace contains the module locations through which this was provided to Fx.ModuleTrace []string// OutputTypeNames is a list of names of types that are produced by// this constructor.OutputTypeNames []string// ModuleName is the name of the module in which the constructor was// provided to.ModuleName string// Err is non-nil if we failed to provide this constructor.Err error// Private denotes whether the provided constructor is a [Private] constructor.Private bool}// Replaced is emitted when a value replaces a type in Fx.type Replaced struct {// OutputTypeNames is a list of names of types that were replaced.OutputTypeNames []string// StackTrace is the stack trace of the call to Replace.StackTrace []string// ModuleTrace contains the module locations through which this value was added.ModuleTrace []string// ModuleName is the name of the module in which the value was added to.ModuleName string// Err is non-nil if we failed to supply the value.Err error}// Decorated is emitted when a decorator is executed in Fx.type Decorated struct {// DecoratorName is the name of the decorator function that was// provided to Fx.DecoratorName string// StackTrace is the stack trace of where the decorator was given to Fx.StackTrace []string// ModuleTrace contains the module locations through which this value was added.ModuleTrace []string// ModuleName is the name of the module in which the value was added to.ModuleName string// OutputTypeNames is a list of names of types that are decorated by// this decorator.OutputTypeNames []string// Err is non-nil if we failed to run this decorator.Err error}// BeforeRun is emitted before a constructor, decorator, or supply/replace stub is run by Fx.// When complete, a Run will be emitted.type BeforeRun struct {// Name is the name of the function that will be run.Name string// Kind indicates which Fx option was used to pass along the function.// It is either "provide", "decorate", "supply", or "replace".Kind string// ModuleName is the name of the module in which the function belongs.ModuleName string}// Run is emitted after a constructor, decorator, or supply/replace stub is run by Fx.type Run struct {// Name is the name of the function that was run.Name string// Kind indicates which Fx option was used to pass along the function.// It is either "provide", "decorate", "supply", or "replace".Kind string// ModuleName is the name of the module in which the function belongs.ModuleName string// Runtime specifies how long it took to run this function.Runtime time.Duration// Err is non-nil if the function returned an error.// If fx.RecoverFromPanics is used, this will include panics.Err error}// Invoking is emitted before we invoke a function specified with fx.Invoke.type Invoking struct {// FunctionName is the name of the function that will be invoked.FunctionName string// ModuleName is the name of the module in which the value was added to.ModuleName string}// Invoked is emitted after we invoke a function specified with fx.Invoke,// whether it succeeded or failed.type Invoked struct {// Functionname is the name of the function that was invoked.FunctionName string// ModuleName is the name of the module in which the value was added to.ModuleName string// Err is non-nil if the function failed to execute.Err error// Trace records information about where the fx.Invoke call was made.// Note that this is NOT a stack trace of the error itself.Trace string}// Started is emitted when an application is started successfully and/or it// errored.type Started struct {// Err is non-nil if the application failed to start successfully.Err error}// Stopping is emitted when the application receives a signal to shut down// after starting. This may happen with fx.Shutdowner or by sending a signal to// the application on the command line.type Stopping struct {// Signal is the signal that caused this shutdown.Signal os.Signal}// Stopped is emitted when the application has finished shutting down, whether// successfully or not.type Stopped struct {// Err is non-nil if errors were encountered during shutdown.Err error}// RollingBack is emitted when the application failed to start up due to an// error, and is being rolled back.type RollingBack struct {// StartErr is the error that caused this rollback.StartErr error}// RolledBack is emitted after a service has been rolled back, whether it// succeeded or not.type RolledBack struct {// Err is non-nil if the rollback failed.Err error}// LoggerInitialized is emitted when a logger supplied with fx.WithLogger is// instantiated, or if it fails to instantiate.type LoggerInitialized struct {// ConstructorName is the name of the constructor that builds this// logger.ConstructorName string// Err is non-nil if the logger failed to build.Err error}
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |