Skip to main content

Initialize server stream

Initializes a new server stream

Function InitializeServerStream(Val Connection, Val Service, Val Method, Val Request, Val Timeout = 10000) Export

ParameterCLI optionTypeRequiredDescription
Connection-ArbitraryConnection object
Service-StringService name
Method-StringMethod name
Request-Structure Of KeyAndValueClient request data
Timeout-NumberTimeout (in ms)

Returns: Map Of KeyAndValue - Processing result

caution

NOCLI: this method is not available in CLI version


1C:Enterprise/OneScript code example
    Address = "https://grpcb.in:9001";

Proto1 = "https://hut.openintegrations.dev/test_data/grpcbin_with_import.proto"; // String, path to file or URL
Proto2 = "https://hut.openintegrations.dev/test_data/mt.proto"; // String, path to file or URL

Scheme = New Map;
Scheme.Insert("main.proto" , Proto1); // Primary
Scheme.Insert("my_types.proto", Proto2); // For import in primary

Parameters = OPI_GRPC.GetConnectionParameters(Address, Scheme);
Tls = OPI_GRPC.GetTlsSettings(True);

Service = "grpcbin.GRPCBin";
Method = "DummyServerStream";

Connection = OPI_GRPC.CreateConnection(Parameters, Tls);

If Not OPI_GRPC.IsConnector(Connection) Then
Raise Connection["error"];
EndIf;

StingsArray = New Array;
StingsArray.Add("one");
StingsArray.Add("two");
StingsArray.Add("three");

Data = New Map;
Data.Insert("f_string" , "Test message");
Data.Insert("f_int32" , 123);
Data.Insert("f_bool" , True);
Data.Insert("f_strings", StingsArray);
Data.Insert("f_sub" , New Structure("f_string", "Nested value"));

Result = OPI_GRPC.InitializeServerStream(Connection, Service, Method, Data); // <---

If Not Result["result"] Then
Raise Result["error"];
Else
StreamID = Result["streamId"];
EndIf;

MessagesArray = New Array;

While True Do

CurrentMessage = OPI_GRPC.GetMessage(Connection, StreamID);

If Not CurrentMessage["result"] Then

Error = CurrentMessage["error"];

If Error = "Timeout" Then
Continue;
ElsIf Error = "Closed" Then
Break;
Else
Raise Error;
EndIf;

Else

MessageData = CurrentMessage["message"];

If ValueIsFilled(MessageData) Then
MessagesArray.Add(MessageData);
EndIf;

EndIf;

EndDo;
Result
{
"result": true,
"streamId": "54ccf80f-9b65-4883-b0de-c6d3a6318c29"
}