Class GetObjectRx.Response
- java.lang.Object
-
- io.helidon.integrations.common.rest.ApiJsonParser
-
- io.helidon.integrations.oci.connect.OciResponseParser
-
- io.helidon.integrations.oci.objectstorage.GetObjectRx.Response
-
- Enclosing class:
- GetObjectRx
public static class GetObjectRx.Response extends OciResponseParser
Response object parsed from JSON returned by theRestApi
.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Multi<ByteBuffer>
bytePublisher()
Get a publisher of byte buffers.Multi<DataChunk>
publisher()
Get a publisher ofDataChunk
, this is useful when the result is sent via WebServer or WebClient that also use it.-
Methods inherited from class io.helidon.integrations.oci.connect.OciResponseParser
getInstant, toInstant
-
Methods inherited from class io.helidon.integrations.common.rest.ApiJsonParser
isPresent, stringValue, toBoolean, toBytesBase64, toDouble, toInstant, toInt, toList, toLong, toMap, toObject, toString
-
-
-
-
Method Detail
-
publisher
public Multi<DataChunk> publisher()
Get a publisher ofDataChunk
, this is useful when the result is sent via WebServer or WebClient that also use it.- Returns:
- publisher of data chunks
-
bytePublisher
public Multi<ByteBuffer> bytePublisher()
Get a publisher of byte buffers.- Returns:
- publisher of byte buffers
-
-