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:
parent
71102e1d5d
commit
9e53ed70fb
@ -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
|
||||
|
||||
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
||||
|
@ -5,8 +5,8 @@ sidebar_position: 2
|
||||
import Tabs from '@theme/Tabs';
|
||||
import TabItem from '@theme/TabItem';
|
||||
|
||||
#
|
||||
Закрыть соединение Явно закрывает созданное ранее соединение
|
||||
# Закрыть соединение
|
||||
Явно закрывает созданное ранее соединение
|
||||
|
||||
|
||||
|
||||
|
@ -5,8 +5,8 @@ sidebar_position: 1
|
||||
import Tabs from '@theme/Tabs';
|
||||
import TabItem from '@theme/TabItem';
|
||||
|
||||
#
|
||||
Открыть соединение Создает TCP соединение
|
||||
# Открыть соединение
|
||||
Создает TCP соединение
|
||||
|
||||
|
||||
|
||||
|
@ -5,8 +5,8 @@ sidebar_position: 3
|
||||
import Tabs from '@theme/Tabs';
|
||||
import TabItem from '@theme/TabItem';
|
||||
|
||||
#
|
||||
Прочитать двоичные данные Читает данные из указанного соединения
|
||||
# Прочитать двоичные данные
|
||||
Читает данные из указанного соединения
|
||||
|
||||
|
||||
|
||||
|
@ -5,8 +5,8 @@ sidebar_position: 4
|
||||
import Tabs from '@theme/Tabs';
|
||||
import TabItem from '@theme/TabItem';
|
||||
|
||||
#
|
||||
Прочитать строку Читает данные из указанного соединения в виде строки
|
||||
# Прочитать строку
|
||||
Читает данные из указанного соединения в виде строки
|
||||
|
||||
|
||||
|
||||
|
@ -5,8 +5,8 @@ sidebar_position: 5
|
||||
import Tabs from '@theme/Tabs';
|
||||
import TabItem from '@theme/TabItem';
|
||||
|
||||
#
|
||||
Отправить двоичные данные Отправляет двоичные данные через указанное соединение
|
||||
# Отправить двоичные данные
|
||||
Отправляет двоичные данные через указанное соединение
|
||||
|
||||
|
||||
|
||||
|
@ -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
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -2060,9 +2060,9 @@
|
||||
КонецФункции
|
||||
|
||||
Функция ПолучитьОбщийМодуль(Знач Имя)
|
||||
|
||||
|
||||
Модуль = Вычислить(Имя);
|
||||
|
||||
|
||||
Возврат Модуль;
|
||||
КонецФункции
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user