All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.bottomlessarchive.warc.service.content.domain.WarcContentBlock Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package com.github.bottomlessarchive.warc.service.content.domain;

import java.io.InputStream;

/**
 * WarcContentBlock interface represents content block of a WARC record Here is a list of known
 * implementations of this interface
 * 
    *
  • RequestContentBlock *
  • ResponseContentBlock *
  • DefaultContentBlock *
* * @author Hadi Jooybar */ public interface WarcContentBlock { /** * Return an InputStream of WARC payload Payload referred to, or contained by a WARC record as a * meaningful subset of the content block * * @return payload InputStream */ InputStream getPayload(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy