Package ai.preferred.venom.fetcher
Class StorageFetcher
- java.lang.Object
-
- ai.preferred.venom.fetcher.StorageFetcher
-
- All Implemented Interfaces:
Fetcher,Interruptible,java.lang.AutoCloseable
public final class StorageFetcher extends java.lang.Object implements Fetcher
This class holds the implementation to provide how items are fetched from a database, to validate the item and to store it if specified.- Author:
- Ween Jiann Lee
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classStorageFetcher.BuilderA builder for StorageFetcher class.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StorageFetcher.Builderbuilder(FileManager fileManager)Create an instance of builder.voidclose()java.util.concurrent.Future<Response>fetch(Request request)Fetch the desired HTTP page given inRequest.java.util.concurrent.Future<Response>fetch(Request request, Callback callback)Fetch the desired HTTP page given inRequest.voidstart()Fetcher starter.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface ai.preferred.venom.Interruptible
interruptAndClose
-
-
-
-
Method Detail
-
builder
public static StorageFetcher.Builder builder(FileManager fileManager)
Create an instance of builder.- Parameters:
fileManager- the file manager to use.- Returns:
- A new instance of builder
-
start
public void start()
Description copied from interface:FetcherFetcher starter.
-
fetch
public java.util.concurrent.Future<Response> fetch(Request request)
Description copied from interface:FetcherFetch the desired HTTP page given inRequest.
-
fetch
public java.util.concurrent.Future<Response> fetch(Request request, Callback callback)
Description copied from interface:FetcherFetch the desired HTTP page given inRequest. Executes callback upon completion.
-
close
public void close() throws java.lang.Exception- Specified by:
closein interfacejava.lang.AutoCloseable- Throws:
java.lang.Exception
-
-