Add user manual source
[ric-plt/lib/rmr.git] / doc / src / library / code_send.im
1
2 .if false
3 ==================================================================================
4         Copyright (c) 2019 Nokia
5         Copyright (c) 2018-2019 AT&T Intellectual Property.
6
7    Licensed under the Apache License, Version 2.0 (the "License");
8    you may not use this file except in compliance with the License.
9    You may obtain a copy of the License at
10
11        http://www.apache.org/licenses/LICENSE-2.0
12
13    Unless required by applicable law or agreed to in writing, software
14    distributed under the License is distributed on an "AS IS" BASIS,
15    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16    See the License for the specific language governing permissions and
17    limitations under the License.
18 ==================================================================================
19 .fi
20
21 .** example sender code
22
23 &h2(Sender Sample)
24 The following code segment shows how a message buffer can be allocated,
25 populated, and sent.
26 The snippet also illustrates how the result from the &func(rmr_send_msg)
27 function is used to send the next message.
28 It does not illustrate error and/or retry handling.
29 &space
30
31 &indent
32 &ex_start
33 mrc = rmr_init( listen_port, MAX_BUF_SZ, RMRFL_NOFLAGS );
34 rmr_set_stimeout( mrc, rmr_retries );
35
36 while( ! rmr_ready( mrc ) ) {
37     sleep( 1 );
38 }
39
40 sbuf = rmr_alloc_msg( mrc, 256 );   // 1st send buffer
41
42 while( TRUE ) {
43     sbuf->len = gen_status( (status_msg *) sbuf->payload );
44     sbuf->mtype = STATUS_MSG;
45     sbuf->sub_id = RMR_VOID_SUBID;     // subscription not used
46     sbuf = rmr_send_msg( mrc, sbuf );
47
48     sleep( delay_sec );
49 }
50
51 rmr_close( mrc );
52
53 &ex_end
54 &uindent