Skip to content

Commit 2841106

Browse files
committed
Merge branch 'develop'
2 parents 7af10dd + 81ffb7b commit 2841106

278 files changed

Lines changed: 1270 additions & 1024 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

examples/CHANGELOG.md

Lines changed: 4 additions & 0 deletions

examples/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License
22

3-
Copyright (c) 2016-2023 kong <congcoi123@gmail.com>
3+
Copyright (c) 2016-2025 kong <congcoi123@gmail.com>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

examples/README.md

Lines changed: 2 additions & 2 deletions

examples/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20250701.0.6.4
1+
20250801.0.6.5

examples/configuration.example4.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
<Configuration>
3838
<Workers>
39-
<Worker name="socket-acceptor">8</Worker>
39+
<Worker name="socket-acceptor">1</Worker>
4040
<Worker name="socket-reader">16</Worker>
4141
<Worker name="socket-writer">16</Worker>
4242
<Worker name="websocket-producer">1</Worker>

examples/configuration.example6.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@
2929
<Property name="socket-writer-buffer-size">1024</Property>
3030
<Property name="packet-compression-threshold-bytes">10240</Property>
3131
<Property name="allow-change-session">false</Property>
32-
<Property name="max-connections-per-ip">2000</Property>
32+
<Property name="max-connections-per-ip">5000</Property>
3333
</Properties>
3434
</Network>
3535

3636
<Configuration>
3737
<Workers>
38-
<Worker name="socket-acceptor">8</Worker>
38+
<Worker name="socket-acceptor">1</Worker>
3939
<Worker name="socket-reader">16</Worker>
4040
<Worker name="socket-writer">16</Worker>
4141
<Worker name="websocket-producer">1</Worker>
@@ -61,13 +61,13 @@
6161
</Schedules>
6262
<Properties>
6363
<Property name="data-serialization">zero</Property>
64-
<Property name="max-request-queue-size">2000</Property>
65-
<Property name="max-response-queue-size-per-session">2000</Property>
64+
<Property name="max-request-queue-size">5000</Property>
65+
<Property name="max-response-queue-size-per-session">5000</Property>
6666
<!-- When the server get disconnection of one client, can be hold its
6767
player instance until timeout -->
6868
<Property name="keep-player-on-disconnection">false</Property>
6969
<!-- The maximum number of players which game can handle -->
70-
<Property name="max-number-players">2000</Property>
70+
<Property name="max-number-players">5000</Property>
7171
<!-- The maximum number of rooms which game can handle -->
7272
<Property name="max-number-rooms">1000</Property>
7373
<!-- The max IDLE time in seconds which server can wait from the last

examples/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>io.github.congcoi123</groupId>
77
<artifactId>tenio-examples</artifactId>
8-
<version>0.6.4</version>
8+
<version>0.6.5</version>
99

1010
<name>${project.groupId}:${project.artifactId}</name>
1111
<description>
@@ -38,8 +38,8 @@
3838
<jdk.release>17</jdk.release>
3939
<jdk.vendor>oracle</jdk.vendor>
4040

41-
<io.github.congcoi123.tenio.core.version>0.6.4</io.github.congcoi123.tenio.core.version>
42-
<io.github.congcoi123.tenio.engine.version>0.6.2</io.github.congcoi123.tenio.engine.version>
41+
<io.github.congcoi123.tenio.core.version>0.6.5</io.github.congcoi123.tenio.core.version>
42+
<io.github.congcoi123.tenio.engine.version>0.6.3</io.github.congcoi123.tenio.engine.version>
4343
<org.apache.commons.version>3.17.0</org.apache.commons.version>
4444

4545
<maven.compiler.plugin.version>3.8.0</maven.compiler.plugin.version>

examples/src/main/java/com/tenio/examples/client/ClientUtility.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
The MIT License
33
4-
Copyright (c) 2016-2023 kong <congcoi123@gmail.com>
4+
Copyright (c) 2016-2025 kong <congcoi123@gmail.com>
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

examples/src/main/java/com/tenio/examples/client/DatagramListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
The MIT License
33
4-
Copyright (c) 2016-2023 kong <congcoi123@gmail.com>
4+
Copyright (c) 2016-2025 kong <congcoi123@gmail.com>
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

examples/src/main/java/com/tenio/examples/client/ServerUtility.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
The MIT License
33
4-
Copyright (c) 2016-2023 kong <congcoi123@gmail.com>
4+
Copyright (c) 2016-2025 kong <congcoi123@gmail.com>
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)