* The server uses the {@link HttpStreamsServerHandler}, and then exposes the messages sent/received by * that using reactive streams. So it effectively uses streams of streams. It then uses Akka streams * to actually handle the requests, echoing the bodies back in the responses as is. - * + *
* The client uses the {@link HttpStreamsClientHandler}, and then exposes the messages sent/received by
* that using reactive streams, so it too is effectively a stream of streams. Here Akka streams is used
* to split the String bodies into many chunks, for more interesting verification of the bodies, and then
* combines all the chunks together back into a String at the end.
*/
-public class FullStackHttpIdentityProcessorVerificationTest extends IdentityProcessorVerification