mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-01-30 05:59:32 +02:00
Main build (Jenkins)
This commit is contained in:
parent
004f59d373
commit
40844f6a4d
@ -31,6 +31,8 @@ import TabItem from '@theme/TabItem';
|
||||
The method tries to read the data in intervals, the duration of which is specified in the AttemptDuration parameter. The Attempts parameter is responsible for the maximum number of attempts. If the new data is successfully received, the number of attempts is reset.
|
||||
|
||||
When working with an infinite stream of incoming data, it is obligatory to specify the MaxSize parameter, because infinite resetting of attempts when receiving data can lead to hangs
|
||||
|
||||
If the connection is closed, an error occurs, or EOF is detected, the read is terminated in either case
|
||||
:::
|
||||
<br/>
|
||||
|
||||
|
@ -31,6 +31,8 @@ import TabItem from '@theme/TabItem';
|
||||
Метод пытается прочесть данные интервалами, длительность которых указана в параметре ДлительностьПопытки. За максимальное число попыток отвечает параметр ЧислоПопыток. При успешном получении новых данных число попыток сбрасывается.
|
||||
|
||||
При работе с бесконечным потоком входящих данных обязательно указание параметра МаксимальныйРазмер, так как бесконечный сброс попыток при получении данных может привести к зависанию
|
||||
|
||||
При закрытии соединения, ошибке или обнаружении EOF чтение завершается в любом случае
|
||||
:::
|
||||
<br/>
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -93,6 +93,7 @@ EndFunction
|
||||
// The Attempts parameter is responsible for the maximum number of attempts. If the new data is successfully received, the number of attempts is reset.
|
||||
// When working with an infinite stream of incoming data, it is obligatory to specify the MaxSize parameter, because^^
|
||||
// infinite resetting of attempts when receiving data can lead to hangs
|
||||
// If the connection is closed, an error occurs, or EOF is detected, the read is terminated in either case
|
||||
//
|
||||
// Parameters:
|
||||
// Connection - Arbitrary - Connection, see. CreateConnection - tcp
|
||||
@ -123,6 +124,7 @@ EndFunction
|
||||
// The Attempts parameter is responsible for the maximum number of attempts. If the new data is successfully received, the number of attempts is reset.
|
||||
// When working with an infinite stream of incoming data, it is obligatory to specify the MaxSize parameter, because^^
|
||||
// infinite resetting of attempts when receiving data can lead to hangs
|
||||
// If the connection is closed, an error occurs, or EOF is detected, the read is terminated in either case
|
||||
//
|
||||
// Parameters:
|
||||
// Address - String - Address and port - address
|
||||
|
@ -93,6 +93,7 @@ EndFunction
|
||||
// The Attempts parameter is responsible for the maximum number of attempts. If the new data is successfully received, the number of attempts is reset.
|
||||
// When working with an infinite stream of incoming data, it is obligatory to specify the MaxSize parameter, because^^
|
||||
// infinite resetting of attempts when receiving data can lead to hangs
|
||||
// If the connection is closed, an error occurs, or EOF is detected, the read is terminated in either case
|
||||
//
|
||||
// Parameters:
|
||||
// Connection - Arbitrary - Connection, see. CreateConnection - tcp
|
||||
@ -123,6 +124,7 @@ EndFunction
|
||||
// The Attempts parameter is responsible for the maximum number of attempts. If the new data is successfully received, the number of attempts is reset.
|
||||
// When working with an infinite stream of incoming data, it is obligatory to specify the MaxSize parameter, because^^
|
||||
// infinite resetting of attempts when receiving data can lead to hangs
|
||||
// If the connection is closed, an error occurs, or EOF is detected, the read is terminated in either case
|
||||
//
|
||||
// Parameters:
|
||||
// Address - String - Address and port - address
|
||||
|
@ -93,6 +93,7 @@
|
||||
// За максимальное число попыток отвечает параметр ЧислоПопыток. При успешном получении новых данных число попыток сбрасывается.
|
||||
// При работе с бесконечным потоком входящих данных обязательно указание параметра МаксимальныйРазмер, так как^^
|
||||
// бесконечный сброс попыток при получении данных может привести к зависанию
|
||||
// При закрытии соединения, ошибке или обнаружении EOF чтение завершается в любом случае
|
||||
//
|
||||
// Параметры:
|
||||
// Соединение - Произвольный - Соединение, см. ОткрытьСоединение - tcp
|
||||
@ -123,6 +124,7 @@
|
||||
// За максимальное число попыток отвечает параметр ЧислоПопыток. При успешном получении новых данных число попыток сбрасывается.
|
||||
// При работе с бесконечным потоком входящих данных обязательно указание параметра МаксимальныйРазмер, так как^^
|
||||
// бесконечный сброс попыток при получении данных может привести к зависанию
|
||||
// При закрытии соединения, ошибке или обнаружении EOF чтение завершается в любом случае
|
||||
//
|
||||
// Параметры:
|
||||
// Адрес - Строка - Адрес и порт для подключения - address
|
||||
|
@ -104,9 +104,9 @@
|
||||
// Возвращаемое значение:
|
||||
// ДвоичныеДанные - Полученные данные
|
||||
Функция ПолучитьДанные(Знач Соединение
|
||||
, Знач ДлительностьПопытки = 200
|
||||
, Знач ЧислоПопыток = 5
|
||||
, Знач МаксимальныйРазмер = 0) Экспорт
|
||||
, Знач ДлительностьПопытки = 200
|
||||
, Знач ЧислоПопыток = 5
|
||||
, Знач МаксимальныйРазмер = 0) Экспорт
|
||||
|
||||
OPI_ПреобразованиеТипов.ПолучитьЧисло(ДлительностьПопытки);
|
||||
OPI_ПреобразованиеТипов.ПолучитьЧисло(ЧислоПопыток);
|
||||
@ -141,7 +141,7 @@
|
||||
, Знач SSL = Ложь
|
||||
, Знач ДлительностьПопытки = 0
|
||||
, Знач ЧислоПопыток = 5
|
||||
, Знач МаксимальныйРазмер = 0
|
||||
, Знач МаксимальныйРазмер = 0
|
||||
, Знач Строкой = Истина
|
||||
, Знач Кодировка = "UTF-8") Экспорт
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user