1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-19 21:17:55 +02:00

Main build (Jenkins)

This commit is contained in:
Vitaly the Alpaca (bot) 2024-12-16 16:30:49 +03:00
parent 71102e1d5d
commit 9e53ed70fb
16 changed files with 5856 additions and 5868 deletions

View File

@ -5,8 +5,8 @@ sidebar_position: 2
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
#
Close connection Explicitly closes a previously created connection
# Close connection
Explicitly closes a previously created connection

View File

@ -5,8 +5,8 @@ sidebar_position: 1
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
#
Create Connection Creates a TCP connection
# Create Connection
Creates a TCP connection

View File

@ -5,8 +5,8 @@ sidebar_position: 3
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
#
Read binary data Reads data from the specified connection
# Read binary data
Reads data from the specified connection

View File

@ -5,8 +5,8 @@ sidebar_position: 4
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
#
Read line Reads data from the specified connection as a string
# Read line
Reads data from the specified connection as a string

View File

@ -5,8 +5,8 @@ sidebar_position: 5
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
#
Send binary data Sends binary data over the specified connection
# Send binary data
Sends binary data over the specified connection

View File

@ -5,8 +5,8 @@ sidebar_position: 6
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
#
Send line Sends data as a string over the specified connection
# Send line
Sends data as a string over the specified connection

View File

@ -5,8 +5,8 @@ sidebar_position: 2
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
#
Закрыть соединение Явно закрывает созданное ранее соединение
# Закрыть соединение
Явно закрывает созданное ранее соединение

View File

@ -5,8 +5,8 @@ sidebar_position: 1
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
#
Открыть соединение Создает TCP соединение
# Открыть соединение
Создает TCP соединение

View File

@ -5,8 +5,8 @@ sidebar_position: 3
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
#
Прочитать двоичные данные Читает данные из указанного соединения
# Прочитать двоичные данные
Читает данные из указанного соединения

View File

@ -5,8 +5,8 @@ sidebar_position: 4
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
#
Прочитать строку Читает данные из указанного соединения в виде строки
# Прочитать строку
Читает данные из указанного соединения в виде строки

View File

@ -5,8 +5,8 @@ sidebar_position: 5
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
#
Отправить двоичные данные Отправляет двоичные данные через указанное соединение
# Отправить двоичные данные
Отправляет двоичные данные через указанное соединение

View File

@ -5,8 +5,8 @@ sidebar_position: 6
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
#
Отправить строку Отправляет данные в виде строки через указанное соединение
# Отправить строку
Отправляет данные в виде строки через указанное соединение

File diff suppressed because it is too large Load Diff

View File

@ -45,8 +45,7 @@
#Region TCPClient
// !NOCLI
// Create Connection
// Create Connection !NOCLI
// Creates a TCP connection
//
// Parameters:
@ -68,8 +67,7 @@ Function CreateConnection(Val Address) Export
EndFunction
// !NOCLI
// Close connection
// Close connection !NOCLI
// Explicitly closes a previously created connection
//
// Parameters:
@ -81,8 +79,7 @@ Function CloseConnection(Val Connection) Export
Return Connection.Disconnect();
EndFunction
// !NOCLI
// Read binary data
// Read binary data !NOCLI
// Reads data from the specified connection
//
// Note
@ -118,8 +115,7 @@ Function ReadBinaryData(Val Connection
EndFunction
// !NOCLI
// Read line
// Read line !NOCLI
// Reads data from the specified connection as a string
//
// Note
@ -147,8 +143,7 @@ Function ReadLine(Val Connection
EndFunction
// !NOCLI
// Send binary data
// Send binary data !NOCLI
// Sends binary data over the specified connection
//
// Parameters:
@ -169,8 +164,7 @@ Function SendBinaryData(Val Connection, Val Data, Val Timeout = 5000) Export
EndFunction
// !NOCLI
// Send line
// Send line !NOCLI
// Sends data as a string over the specified connection
//
// Parameters:

View File

@ -45,8 +45,7 @@
#Region TCPClient
// !NOCLI
// Create Connection
// Create Connection !NOCLI
// Creates a TCP connection
//
// Parameters:
@ -68,8 +67,7 @@ Function CreateConnection(Val Address) Export
EndFunction
// !NOCLI
// Close connection
// Close connection !NOCLI
// Explicitly closes a previously created connection
//
// Parameters:
@ -81,8 +79,7 @@ Function CloseConnection(Val Connection) Export
Return Connection.Disconnect();
EndFunction
// !NOCLI
// Read binary data
// Read binary data !NOCLI
// Reads data from the specified connection
//
// Note
@ -118,8 +115,7 @@ Function ReadBinaryData(Val Connection
EndFunction
// !NOCLI
// Read line
// Read line !NOCLI
// Reads data from the specified connection as a string
//
// Note
@ -147,8 +143,7 @@ Function ReadLine(Val Connection
EndFunction
// !NOCLI
// Send binary data
// Send binary data !NOCLI
// Sends binary data over the specified connection
//
// Parameters:
@ -169,8 +164,7 @@ Function SendBinaryData(Val Connection, Val Data, Val Timeout = 5000) Export
EndFunction
// !NOCLI
// Send line
// Send line !NOCLI
// Sends data as a string over the specified connection
//
// Parameters: