Skip to content

Commit

Permalink
NodeJS -> Node.js
Browse files Browse the repository at this point in the history
  • Loading branch information
jensstigaard committed Aug 5, 2024
1 parent 3d65fe5 commit 27f2f87
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/modules/connection-tcp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const NEWLINE_CHAR_BYTE_LENGTH = 2
// vMix TCP API docs
// https://www.vmix.com/help24/TCPAPI.html
//
// Internally using NodeJS Net Socket
// Internally using Node.js Net Socket
// https://nodejs.org/api/net.html#net_new_net_socket_options
//
// With inspiration from: Github Gist: Node.js TCP client / server
Expand Down Expand Up @@ -100,11 +100,11 @@ export class ConnectionTCP {

protected _isRetrying: boolean = false
protected _reconnectionIntervalTimeout: number = 10000
protected _reconnectionInterval: NodeJS.Timeout | null = null
protected _reconnectionInterval: Node.js.Timeout | null = null

// // Timeout for establishing the connection. Should be smaller than the reconnect invterval!
// protected _connectTimeoutDuration: number = 5000
// protected _connectTimeout: NodeJS.Timeout | null = null
// protected _connectTimeout: Node.js.Timeout | null = null

/**
* Connection state
Expand Down

0 comments on commit 27f2f87

Please sign in to comment.