added epoll native transport for server

This commit is contained in:
2025-02-05 21:01:49 +08:00
parent 53b24e3d54
commit 66ab357d91
11 changed files with 62 additions and 9 deletions

View File

@@ -27,6 +27,7 @@ public class Configuration {
Cache cache;
Authentication authentication;
Tls tls;
boolean useNativeTransport;
@Value
public static class EventExecutor {
@@ -151,7 +152,8 @@ public class Configuration {
Map<String, Group> groups,
Cache cache,
Authentication authentication,
Tls tls
Tls tls,
boolean useNativeTransport
) {
return new Configuration(
host,
@@ -164,7 +166,8 @@ public class Configuration {
groups,
cache,
authentication,
tls
tls,
useNativeTransport
);
}
}