The future associated to a submitted transfer request via CRT S3 client :type meta: s3transfer.crt.CRTTransferMeta :param meta: The metadata associated to the transfer future. :type coordinator: s3transfer.crt.CRTTransferCoordinator :param coordinator: The coordinat
(self, meta=None, coordinator=None)
| 384 | |
| 385 | class CRTTransferFuture(BaseTransferFuture): |
| 386 | def __init__(self, meta=None, coordinator=None): |
| 387 | """The future associated to a submitted transfer request via CRT S3 client |
| 388 | |
| 389 | :type meta: s3transfer.crt.CRTTransferMeta |
| 390 | :param meta: The metadata associated to the transfer future. |
| 391 | |
| 392 | :type coordinator: s3transfer.crt.CRTTransferCoordinator |
| 393 | :param coordinator: The coordinator associated to the transfer future. |
| 394 | """ |
| 395 | self._meta = meta |
| 396 | if meta is None: |
| 397 | self._meta = CRTTransferMeta() |
| 398 | self._coordinator = coordinator |
| 399 | |
| 400 | @property |
| 401 | def meta(self): |
nothing calls this directly
no test coverage detected