C# Class collaborator.CICollaborator

Afficher le fichier Open project: hddevteam/luckyci

Méthodes publiques

Méthode Description
CICollaborator ( ) : System
ConnectRabbitMQ ( ) : void

代码连接RabbitMQ

HandleMessage ( ) : void

处理消息事件,统一放到此函数里面,此函数放到OnStart中,减少服务启动时的时间。

SaveInfoToDataBase ( ProjectInfo projectInfo, string dbPath, string logPath ) : bool

将数据存储到mongoDB中,并且输出Log信息

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

清理所有正在使用的资源。

OnStart ( string args ) : void
OnStop ( ) : void

Private Methods

Méthode Description
InitializeComponent ( ) : void

设计器支持所需的方法 - 不要修改 使用代码编辑器修改此方法的内容。

Method Details

CICollaborator() public méthode

public CICollaborator ( ) : System
Résultat System

ConnectRabbitMQ() public méthode

代码连接RabbitMQ
public ConnectRabbitMQ ( ) : void
Résultat void

Dispose() protected méthode

清理所有正在使用的资源。
protected Dispose ( bool disposing ) : void
disposing bool 如果应释放托管资源,为 true;否则为 false。
Résultat void

HandleMessage() public méthode

处理消息事件,统一放到此函数里面,此函数放到OnStart中,减少服务启动时的时间。
public HandleMessage ( ) : void
Résultat void

OnStart() protected méthode

protected OnStart ( string args ) : void
args string
Résultat void

OnStop() protected méthode

protected OnStop ( ) : void
Résultat void

SaveInfoToDataBase() public méthode

将数据存储到mongoDB中,并且输出Log信息
public SaveInfoToDataBase ( ProjectInfo projectInfo, string dbPath, string logPath ) : bool
projectInfo ProjectInfo 从Rabbit取回的信息
dbPath string mongoDB数据库的路径
logPath string Log日志的文件路径
Résultat bool