MCPcopy Create free account
hub / github.com/OpenGene/fastp / input

Method input

src/writerthread.cpp:109–116  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

107}
108
109void WriterThread::input(int tid, string* data) {
110 if (mPwriteMode) {
111 inputPwrite(tid, data);
112 return;
113 }
114 mBufferLists[tid]->produce(data);
115 mBufferLength++;
116}
117
118void WriterThread::inputPwrite(int tid, string* data) {
119 size_t bound = libdeflate_gzip_compress_bound(mCompressors[tid], data->size());

Callers

nothing calls this directly

Calls 1

produceMethod · 0.80

Tested by

no test coverage detected