-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Add Source.fromArray operator for Java dsl. (#1248)
- Loading branch information
Showing
8 changed files
with
126 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
docs/src/main/paradox/stream/operators/Source/fromArray.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Source.fromArray | ||
|
||
Stream the values of an `array`. | ||
|
||
@ref[Source operators](../index.md#source-operators) | ||
|
||
## Signature | ||
|
||
@apidoc[Source.from](Source$) { java="#fromArray(java.lang.Object[])" } | ||
|
||
## Description | ||
|
||
Stream the values of a Java `array`. | ||
|
||
## Examples | ||
|
||
Java | ||
: @@snip [from.java](/docs/src/test/java/jdocs/stream/operators/SourceDocExamples.java) { #imports #source-from-array } | ||
|
||
## Reactive Streams semantics | ||
|
||
@@@div { .callout } | ||
|
||
**emits** the next value of the array | ||
|
||
**completes** when the last element of the seq has been emitted | ||
|
||
@@@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
stream/src/main/scala/org/apache/pekko/stream/impl/fusing/ArraySource.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.pekko.stream.impl.fusing | ||
|
||
import org.apache.pekko | ||
import pekko.annotation.InternalApi | ||
import pekko.stream.{ Attributes, Outlet, SourceShape } | ||
import pekko.stream.impl.Stages.DefaultAttributes | ||
import pekko.stream.stage.{ GraphStage, GraphStageLogic, OutHandler } | ||
|
||
@InternalApi | ||
private[pekko] final class ArraySource[T](elements: Array[T]) extends GraphStage[SourceShape[T]] { | ||
require(elements ne null, "array must not be null") | ||
override protected def initialAttributes: Attributes = DefaultAttributes.arraySource | ||
private val out = Outlet[T]("ArraySource.out") | ||
override val shape: SourceShape[T] = SourceShape(out) | ||
|
||
override def createLogic(inheritedAttributes: Attributes): GraphStageLogic = | ||
new GraphStageLogic(shape) with OutHandler { | ||
private var index: Int = 0 | ||
|
||
override def preStart(): Unit = if (elements.isEmpty) completeStage() | ||
|
||
override def onPull(): Unit = { | ||
if (index < elements.length) { | ||
push(out, elements(index)) | ||
index += 1 | ||
if (index == elements.length) { | ||
complete(out) | ||
} | ||
} else { | ||
complete(out) | ||
} | ||
} | ||
|
||
setHandler(out, this) | ||
} | ||
|
||
override def toString: String = "ArraySource" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters