Sync with RSC move graph to flow
This commit is contained in:
parent
dc91c81fc4
commit
8a6fa02887
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2016 the original author or authors.
|
* Copyright (c) 2011-2016 Pivotal Software Inc, All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
package org.springframework.http.server.reactive.boot;
|
package org.springframework.http.server.reactive.boot;
|
||||||
|
|
||||||
import reactor.core.graph.Connectable;
|
import reactor.core.flow.Loopback;
|
||||||
import reactor.core.state.Completable;
|
import reactor.core.state.Completable;
|
||||||
import reactor.io.buffer.Buffer;
|
import reactor.io.buffer.Buffer;
|
||||||
import reactor.io.net.ReactiveNet;
|
import reactor.io.net.ReactiveNet;
|
||||||
|
@ -30,7 +30,7 @@ import org.springframework.util.Assert;
|
||||||
* @author Stephane Maldini
|
* @author Stephane Maldini
|
||||||
*/
|
*/
|
||||||
public class ReactorHttpServer extends HttpServerSupport
|
public class ReactorHttpServer extends HttpServerSupport
|
||||||
implements HttpServer, Connectable, Completable {
|
implements HttpServer, Loopback, Completable {
|
||||||
|
|
||||||
private ReactorHttpHandlerAdapter reactorHandler;
|
private ReactorHttpHandlerAdapter reactorHandler;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue