Send specified data as part of the current delivery. :param data: Data to send
(self, data: bytes)
| 1155 | pn_link_offered(self._impl, n) |
| 1156 | |
| 1157 | def stream(self, data: bytes) -> int: |
| 1158 | """ |
| 1159 | Send specified data as part of the current delivery. |
| 1160 | |
| 1161 | :param data: Data to send |
| 1162 | """ |
| 1163 | return self._check(pn_link_send(self._impl, data)) |
| 1164 | |
| 1165 | def send(self, obj: Union[bytes, 'Message'], tag: Optional[str] = None) -> Union[int, Delivery]: |
| 1166 | """ |
no test coverage detected