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 Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem'; import TabItem from '@theme/TabItem';
# # Close connection
Close connection Explicitly closes a previously created connection Explicitly closes a previously created connection

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

File diff suppressed because it is too large Load Diff

View File

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

View File

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

View File

@ -2060,9 +2060,9 @@
КонецФункции КонецФункции
Функция ПолучитьОбщийМодуль(Знач Имя) Функция ПолучитьОбщийМодуль(Знач Имя)
Модуль = Вычислить(Имя); Модуль = Вычислить(Имя);
Возврат Модуль; Возврат Модуль;
КонецФункции КонецФункции