예제 #1
0
파일: Consumer.cs 프로젝트: luyajin/equeue
 public Consumer Stop()
 {
     _stopped = true;
     _commitConsumeOffsetService.Stop();
     _rebalanceService.Stop();
     _pullMessageService.Stop();
     _clientService.Stop();
     _logger.InfoFormat("{0} stopped.", GetType().Name);
     return(this);
 }