StringCronetCallback

public abstract class StringCronetCallback extends InMemoryTransformCronetCallback<String>

A specialization of InMemoryTransformCronetCallback that interprets the response body as a string.

The charset used to decode the string is derived from the Content-Type header.

Public Method Summary

StringCronetCallback
addCompletionListener(CronetRequestCompletionListener<? super String> listener)
Adds a completion listener.

Protected Method Summary

String
transformBodyBytes(UrlResponseInfo info, byte[] bodyBytes)
Transforms (deserializes) the plain full body into a user-defined object.

Inherited Method Summary

Public Methods

public StringCronetCallback addCompletionListener (CronetRequestCompletionListener<? super String> listener)

Adds a completion listener. All listeners are informed when the request reaches a terminal state, in order of addition. If a listener is added multiple times, it will only be called once according to the first time it was added.

Parameters
listener

Protected Methods

protected String transformBodyBytes (UrlResponseInfo info, byte[] bodyBytes)

Transforms (deserializes) the plain full body into a user-defined object.

It is assumed that the implementing classes handle edge cases (such as empty and malformed bodies) appropriately. Cronet doesn't inspects the objects and passes them (or any exceptions) along to the issuer of the request.

Parameters
info
bodyBytes