![JAR search and dependency download from the Maven repository](/logo.png)
com.github.bottomlessarchive.warc.service.content.domain.WarcContentBlock Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-warc Show documentation
Show all versions of java-warc Show documentation
A WARC file reader and parser written in Java.
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