Documentation ¶
Overview ¶
Copyright 2014 mqant Author. All Rights Reserved.
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.
Index ¶
- func NewApp(opts ...module.Option) module.App
- type DefaultApp
- func (app *DefaultApp) AddRPCSerialize(name string, Interface module.RPCSerialize) error
- func (app *DefaultApp) Configure(settings conf.Config) error
- func (app *DefaultApp) GetModuleInited() func(app module.App, module module.Module)
- func (app *DefaultApp) GetProcessID() string
- func (app *DefaultApp) GetRPCSerialize() map[string]module.RPCSerialize
- func (app *DefaultApp) GetRouteServer(filter string, hash string, opts ...selector.SelectOption) (s module.ServerSession, err error)
- func (app *DefaultApp) GetServerById(serverId string) (module.ServerSession, error)
- func (app *DefaultApp) GetServerBySelector(serviceName string, opts ...selector.SelectOption) (module.ServerSession, error)
- func (app *DefaultApp) GetServersByType(serviceName string) []module.ServerSession
- func (app *DefaultApp) GetSettings() conf.Config
- func (app *DefaultApp) NewProtocolMarshal(data []byte) module.ProtocolMarshal
- func (app *DefaultApp) OnConfigurationLoaded(_func func(app module.App)) error
- func (app *DefaultApp) OnDestroy() error
- func (app *DefaultApp) OnInit(settings conf.Config) error
- func (app *DefaultApp) OnModuleInited(_func func(app module.App, module module.Module)) error
- func (app *DefaultApp) OnStartup(_func func(app module.App)) error
- func (app *DefaultApp) Options() module.Options
- func (app *DefaultApp) ProtocolMarshal(Trace string, Result interface{}, Error string) (module.ProtocolMarshal, string)
- func (app *DefaultApp) Registry() registry.Registry
- func (app *DefaultApp) Route(moduleType string, ...) error
- func (app *DefaultApp) RpcInvoke(module module.RPCModule, moduleType string, _func string, ...) (result interface{}, err string)
- func (app *DefaultApp) RpcInvokeArgs(module module.RPCModule, moduleType string, _func string, ArgsType []string, ...) (result interface{}, err string)
- func (app *DefaultApp) RpcInvokeNR(module module.RPCModule, moduleType string, _func string, ...) (err error)
- func (app *DefaultApp) RpcInvokeNRArgs(module module.RPCModule, moduleType string, _func string, ArgsType []string, ...) (err error)
- func (app *DefaultApp) Run(debug bool, mods ...module.Module) error
- func (app *DefaultApp) SetMapRoute(fn func(app module.App, route string) string) error
- func (app *DefaultApp) SetProtocolMarshal(...) error
- func (app *DefaultApp) Transport() *nats.Conn
- func (app *DefaultApp) Watcher(node *registry.Node)
- func (app *DefaultApp) WorkDir() string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type DefaultApp ¶
type DefaultApp struct {
// contains filtered or unexported fields
}
func (*DefaultApp) AddRPCSerialize ¶
func (app *DefaultApp) AddRPCSerialize(name string, Interface module.RPCSerialize) error
func (*DefaultApp) GetModuleInited ¶
func (app *DefaultApp) GetModuleInited() func(app module.App, module module.Module)
func (*DefaultApp) GetProcessID ¶
func (app *DefaultApp) GetProcessID() string
func (*DefaultApp) GetRPCSerialize ¶
func (app *DefaultApp) GetRPCSerialize() map[string]module.RPCSerialize
func (*DefaultApp) GetRouteServer ¶
func (app *DefaultApp) GetRouteServer(filter string, hash string, opts ...selector.SelectOption) (s module.ServerSession, err error)
func (*DefaultApp) GetServerById ¶
func (app *DefaultApp) GetServerById(serverId string) (module.ServerSession, error)
func (*DefaultApp) GetServerBySelector ¶
func (app *DefaultApp) GetServerBySelector(serviceName string, opts ...selector.SelectOption) (module.ServerSession, error)
func (*DefaultApp) GetServersByType ¶
func (app *DefaultApp) GetServersByType(serviceName string) []module.ServerSession
func (*DefaultApp) GetSettings ¶
func (app *DefaultApp) GetSettings() conf.Config
func (*DefaultApp) NewProtocolMarshal ¶
func (app *DefaultApp) NewProtocolMarshal(data []byte) module.ProtocolMarshal
func (*DefaultApp) OnConfigurationLoaded ¶
func (app *DefaultApp) OnConfigurationLoaded(_func func(app module.App)) error
func (*DefaultApp) OnDestroy ¶
func (app *DefaultApp) OnDestroy() error
func (*DefaultApp) OnModuleInited ¶
func (*DefaultApp) Options ¶
func (app *DefaultApp) Options() module.Options
func (*DefaultApp) ProtocolMarshal ¶
func (app *DefaultApp) ProtocolMarshal(Trace string, Result interface{}, Error string) (module.ProtocolMarshal, string)
func (*DefaultApp) Registry ¶
func (app *DefaultApp) Registry() registry.Registry
func (*DefaultApp) Route ¶ added in v1.6.7
func (app *DefaultApp) Route(moduleType string, fn func(app module.App, Type string, hash string) module.ServerSession) error
func (*DefaultApp) RpcInvokeArgs ¶
func (*DefaultApp) RpcInvokeNR ¶
func (*DefaultApp) RpcInvokeNRArgs ¶
func (*DefaultApp) SetMapRoute ¶
func (*DefaultApp) SetProtocolMarshal ¶
func (app *DefaultApp) SetProtocolMarshal(protocolMarshal func(Trace string, Result interface{}, Error string) (module.ProtocolMarshal, string)) error
func (*DefaultApp) Transport ¶
func (app *DefaultApp) Transport() *nats.Conn
func (*DefaultApp) Watcher ¶
func (app *DefaultApp) Watcher(node *registry.Node)
func (*DefaultApp) WorkDir ¶
func (app *DefaultApp) WorkDir() string
Click to show internal directories.
Click to hide internal directories.