Are the any implications to closing one way or the other?
For example, if sending some data and closing the connection I could write:
DRC.Send 'C1' 'some data' 1
or:
DRC.Send 'C1' 'some data'
DRC.Close 'C1'
Are these equivalent?
Is the former just a convenience, or is the close somehow more tightly connected to the sending of the data?
Are there small differences that might show up on the other end of the wire, for example (if using Conga on the other end), getting some data in a blocklast event, or getting the data in one event, and then a separate blocklast event.