Rename akka to pekko in configuration (#63)
Resolves https://github.com/apache/incubator-pekko/issues/54
This commit is contained in:
parent
708da8caec
commit
3d93dbcb81
1047 changed files with 4472 additions and 4464 deletions
|
|
@ -23,10 +23,10 @@ public interface AsSubscriber {
|
|||
public static final class Source {
|
||||
public
|
||||
// #api
|
||||
static <T> akka.stream.javadsl.Source<T, Subscriber<T>> asSubscriber()
|
||||
static <T> pekko.stream.javadsl.Source<T, Subscriber<T>> asSubscriber()
|
||||
// #api
|
||||
{
|
||||
return akka.stream.javadsl.JavaFlowSupport.Source.<T>asSubscriber();
|
||||
return pekko.stream.javadsl.JavaFlowSupport.Source.<T>asSubscriber();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,10 +22,10 @@ public interface FromPublisher {
|
|||
public static final class Source {
|
||||
public
|
||||
// #api
|
||||
static <T> akka.stream.javadsl.Source<T, NotUsed> fromPublisher(Publisher<T> publisher)
|
||||
static <T> pekko.stream.javadsl.Source<T, NotUsed> fromPublisher(Publisher<T> publisher)
|
||||
// #api
|
||||
{
|
||||
return akka.stream.javadsl.JavaFlowSupport.Source.<T>fromPublisher(publisher);
|
||||
return pekko.stream.javadsl.JavaFlowSupport.Source.<T>fromPublisher(publisher);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue