Package discord4j.rest.http
Class EmptyReaderStrategy
java.lang.Object
discord4j.rest.http.EmptyReaderStrategy
- All Implemented Interfaces:
ReaderStrategy<Void>
Read a response without a body.
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
EmptyReaderStrategy
public EmptyReaderStrategy()
-
-
Method Details
-
canRead
Description copied from interface:ReaderStrategyWhether the given object type is supported by this reader.- Specified by:
canReadin interfaceReaderStrategy<Void>- Parameters:
type- the type of object to checkcontentType- the content type for the read- Returns:
trueif readable,falseotherwise
-
read
Description copied from interface:ReaderStrategyRead from the input message and encode to a single object.- Specified by:
readin interfaceReaderStrategy<Void>- Parameters:
content- the response contentsresponseType- the type of object in the response which must have been previously checked viaReaderStrategy.canRead(Class, String)- Returns:
- a Mono for the resolved response, according to the given response type
-