1
0
mirror of https://github.com/actix/examples synced 2024-11-23 14:31:07 +01:00
examples/server-sent-events/drain.js

43 lines
921 B
JavaScript
Raw Normal View History

2024-08-07 03:04:57 +02:00
const http = require("http")
2022-08-07 02:24:40 +02:00
let drop_goal = 5_000
let dropped = 0
let query = {
2024-08-07 03:04:57 +02:00
method: "POST",
host: "127.0.0.1",
2022-08-07 02:24:40 +02:00
port: 8080,
2024-08-07 03:04:57 +02:00
path: "/events",
}
setInterval(() => {
2022-08-07 02:24:40 +02:00
if (dropped < drop_goal) {
let request = http
2024-08-07 03:04:57 +02:00
.request(query, response => {
response.on("data", data => {
if (data.includes("data: connected\n")) {
2022-08-07 02:24:40 +02:00
// drop connection after welcome message
dropped += 1
request.abort()
}
})
2022-08-07 02:24:40 +02:00
})
2024-08-07 03:04:57 +02:00
.on("error", () => {})
2022-08-07 02:24:40 +02:00
.end()
}
2023-03-30 04:57:54 +02:00
}, 0)
setInterval(() => {
2024-08-07 03:04:57 +02:00
http
.request({ ...query, path: "/" }, () => print_status(true))
2022-08-07 02:24:40 +02:00
.setTimeout(100, () => print_status(false))
2024-08-07 03:04:57 +02:00
.on("error", () => {})
}, 20)
function print_status(accepting_connections) {
2024-08-07 03:04:57 +02:00
process.stdout.write("\r\x1b[K")
2022-08-07 02:24:40 +02:00
process.stdout.write(
2024-08-07 03:04:57 +02:00
`Connections dropped: ${dropped}, accepting connections: ${accepting_connections}`,
2022-08-07 02:24:40 +02:00
)
}