Nav apraksta

yuanan 2f0687c2c3 【框架搭建】整合RabbitMQ 1 mēnesi atpakaļ
src 2f0687c2c3 【框架搭建】整合RabbitMQ 1 mēnesi atpakaļ
.gitignore 6a442cecf8 【框架搭建】update 2 mēneši atpakaļ
Cargo.lock 2f0687c2c3 【框架搭建】整合RabbitMQ 1 mēnesi atpakaļ
Cargo.toml 2f0687c2c3 【框架搭建】整合RabbitMQ 1 mēnesi atpakaļ
emu-config.yaml 2f0687c2c3 【框架搭建】整合RabbitMQ 1 mēnesi atpakaļ
readme.md d909592fe8 【框架搭建】增加类图 2 mēneši atpakaļ

readme.md

系统类图

classDiagram
    class Service {
        +run() Result~JoinHandle~
    }
    <<interface>> Service
    class Pcs {
        +new() Pcs
        +run() Result~JoinHandle~
    }
    class Bms {
        +new() Bms
        +run() Result~JoinHandle~
    }
    Pcs ..|> Service
    Bms ..|> Service
    class Ems {
        +devices: Vec~Service~
        +start_services() Result
    }
    Ems *-- Service