Callback invoked when a reply to a stream creation has been received.
Application code may implement this method to send more data to the other end:
public void onReply(Stream stream, ReplyInfo replyInfo) { stream.data(new StringDataInfo("content"), true); }@param stream the stream @param replyInfo the reply metadata
|
|
|
|
|
|
|
|
|
|
|
|
|
|