Searched refs:Reply (Results 1 – 11 of 11) sorted by relevance
/thrift-3.4.0/lib/erl/src/ |
D | thrift_processor.erl | 138 Reply = {{struct, [{0, ReplyType}]}, {StructName, ReplyData}}, 139 send_reply(State, Function, ?tMessageType_REPLY, Reply, Seqid); 200 Reply = {?TApplicationException_Structure, 204 send_reply(State, Function, ?tMessageType_EXCEPTION, Reply, Seqid). 206 send_reply(State = #thrift_processor{protocol = Proto0}, Function, ReplyMessageType, Reply, Seqid) … 212 {Proto2, ok} = thrift_protocol:write(Proto1, Reply),
|
D | thrift_client.erl | 68 {Params, Reply} = try 72 MsgType = case Reply of 136 {Proto1, {ok, Reply}} = thrift_protocol:read(Proto0, ReplyStructDef), 139 ReplyList = tuple_to_list(Reply),
|
D | thrift_reconnecting_client.erl | 123 { C, { ok, Reply } } -> 125 { reply, {ok, Reply }, S };
|
/thrift-3.4.0/tutorial/erl/ |
D | server.erl | 81 Reply -> {reply, Reply}
|
/thrift-3.4.0/lib/netstd/Thrift/Protocol/Entities/ |
D | TMessageType.cs | 24 Reply = 2, enumerator
|
/thrift-3.4.0/doc/specs/ |
D | thrift-rpc.md | 58 3. Server sends a `Message` (type `Reply` or `Exception`) to start the response. 72 * _Message type_, a message types, one of `Call`, `Reply`, `Exception` and `Oneway`. 85 …n the protocol exchange). Servers send responses with messages of type `Exception` or `Reply` (step 88 Type `Reply` is used when the service method completes normally. That is, it returns a value or it … 114 The struct that follows the message of type `Reply` are structs in which exactly 1 of the following…
|
/thrift-3.4.0/lib/rs/src/protocol/ |
D | mod.rs | 748 Reply, enumerator 759 TMessageType::Reply => write!(f, "Reply"), in fmt() 770 TMessageType::Reply => 0x02, in from() 782 0x02 => Ok(TMessageType::Reply), in try_from()
|
D | compact.rs | 690 TMessageType::Reply, in must_write_message_begin_largest_maximum_positive_sequence_number() 733 let expected = TMessageIdentifier::new("bar", TMessageType::Reply, i32::MAX); in must_read_message_begin_largest_maximum_positive_sequence_number() 794 TMessageType::Reply, in must_write_message_begin_positive_sequence_number_1() 833 let expected = TMessageIdentifier::new("bar", TMessageType::Reply, 991_828); in must_read_message_begin_positive_sequence_number_1() 845 TMessageType::Reply, in must_write_message_begin_zero_sequence_number() 880 let expected = TMessageIdentifier::new("bar", TMessageType::Reply, 0); in must_read_message_begin_zero_sequence_number() 892 TMessageType::Reply, in must_write_message_begin_largest_minimum_negative_sequence_number() 937 let expected = TMessageIdentifier::new("bar", TMessageType::Reply, i32::MIN); in must_read_message_begin_largest_minimum_negative_sequence_number()
|
D | binary.rs | 574 let ident = TMessageIdentifier::new("test", TMessageType::Reply, 10); in must_write_strict_message_reply_begin() 604 let ident = TMessageIdentifier::new("test", TMessageType::Reply, 10); in must_write_non_strict_message_reply_begin()
|
/thrift-3.4.0/lib/netstd/Tests/Thrift.IntegrationTests/Protocols/ |
D | ProtocolsOperationsTests.cs | 42 [DataRow(typeof(TBinaryProtocol), TMessageType.Reply)] 46 [DataRow(typeof(TCompactProtocol), TMessageType.Reply)] 50 [DataRow(typeof(TJsonProtocol), TMessageType.Reply)]
|
/thrift-3.4.0/lib/delphi/src/ |
D | Thrift.Protocol.pas | 58 Reply = 2,
|