()
| 77 | } |
| 78 | |
| 79 | func (controller *WriteController) installModules() bool { |
| 80 | for _, m := range orderedModuleList { |
| 81 | if m.IsRegistered() { |
| 82 | if !m.Install() { |
| 83 | return false |
| 84 | } |
| 85 | controller.moduleList = append(controller.moduleList, m) |
| 86 | } |
| 87 | } |
| 88 | return true |
| 89 | } |
| 90 | |
| 91 | func (controller *WriteController) Send(logs []*oplog.GenericOplog, tag uint32) int64 { |
| 92 | // all tunnel message which contain empty logs will be considered as |
no test coverage detected