Skip to content

Commit

Permalink
renames RxJavaReactivePublisher to ReactorReactivePublisher
Browse files Browse the repository at this point in the history
  • Loading branch information
grimmjo committed Jun 28, 2021
1 parent c95fd2c commit 1e301fa
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,21 @@
import reactor.core.publisher.Mono;

/**
* ReactorReactivePublisher
* @author jgrimm
*/

@Internal
@EachBean(Connection.class)
public class RxJavaReactivePublisher implements ReactivePublisher {
public class ReactorReactivePublisher implements ReactivePublisher {

private final Connection connection;

/**
* Constructor.
* @param connection The given connection
*/
public RxJavaReactivePublisher(@Parameter Connection connection) {
public ReactorReactivePublisher(@Parameter Connection connection) {
this.connection = connection;
}

Expand Down

0 comments on commit 1e301fa

Please sign in to comment.