| 7 | } |
| 8 | |
| 9 | void GPWriter::open(const S3Params& params) { |
| 10 | this->s3InterfaceService.setRESTfulService(this->restfulServicePtr); |
| 11 | this->params = this->params.setPrefix(this->genUniqueKeyName(this->params.getS3Url())); |
| 12 | this->commonWriter.setS3InterfaceService(&this->s3InterfaceService); |
| 13 | this->commonWriter.open(this->params); |
| 14 | } |
| 15 | |
| 16 | uint64_t GPWriter::write(const char* buf, uint64_t count) { |
| 17 | return this->commonWriter.write(buf, count); |
no test coverage detected