github.com/zly-app/zapp@v1.3.3/core/component.go (about)

     1  /*
     2  -------------------------------------------------
     3     Author :       zlyuancn
     4     date:         2020/7/2
     5     Description :
     6  -------------------------------------------------
     7  */
     8  
     9  package core
    10  
    11  // 组件, 如db, rpc, cache, mq等
    12  type IComponent interface {
    13  	// 获取app
    14  	App() IApp
    15  	// 获取配置
    16  	Config() *Config
    17  
    18  	// 日志
    19  	ILogger
    20  	// 关闭所有组件
    21  	Close()
    22  
    23  	// 协程池
    24  	IGPools
    25  	// 消息总线
    26  	IMsgbus
    27  }
    28  
    29  // 组件类型
    30  type ComponentType string