[+] 架构优化:Moon=MCU+SFU

This commit is contained in:
acgist
2022-12-02 22:22:49 +08:00
parent 4a0e1ebbc7
commit b1ed244d4d
17 changed files with 132 additions and 95 deletions

View File

@@ -77,7 +77,7 @@ public class BootAutoConfiguration {
@Value("${spring.application.name:taoyao}")
private String name;
@Value("${taoyao.webrtc.framework:SFU}")
@Value("${taoyao.webrtc.framework:MOON}")
private String framework;
@Autowired

View File

@@ -24,18 +24,14 @@ public class WebrtcProperties {
*/
public enum Framework {
/**
* SFU架构
*/
SFU,
/**
* MCU架构
*/
MCU,
/**
* MESH架构
*/
MESH;
MESH,
/**
* MOON架构
*/
MOON;
}