NOISSUE Flatten gui and logic libraries into MultiMC
This commit is contained in:
22
launcher/net/MetaCacheSink.h
Normal file
22
launcher/net/MetaCacheSink.h
Normal file
@ -0,0 +1,22 @@
|
||||
#pragma once
|
||||
#include "FileSink.h"
|
||||
#include "ChecksumValidator.h"
|
||||
#include "net/HttpMetaCache.h"
|
||||
|
||||
namespace Net {
|
||||
class MetaCacheSink : public FileSink
|
||||
{
|
||||
public: /* con/des */
|
||||
MetaCacheSink(MetaEntryPtr entry, ChecksumValidator * md5sum);
|
||||
virtual ~MetaCacheSink();
|
||||
bool hasLocalData() override;
|
||||
|
||||
protected: /* methods */
|
||||
JobStatus initCache(QNetworkRequest & request) override;
|
||||
JobStatus finalizeCache(QNetworkReply & reply) override;
|
||||
|
||||
private: /* data */
|
||||
MetaEntryPtr m_entry;
|
||||
ChecksumValidator * m_md5Node;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user