format source with scalafmt, #26511
This commit is contained in:
parent
2ba9b988df
commit
75579bed17
779 changed files with 15729 additions and 13096 deletions
|
|
@ -19,9 +19,10 @@ import scala.util.control.NonFatal
|
|||
/**
|
||||
* INTERNAL API
|
||||
*/
|
||||
@InternalApi private[akka] final class UnfoldResourceSourceAsync[T, S](create: () => Future[S],
|
||||
readData: (S) => Future[Option[T]],
|
||||
close: (S) => Future[Done])
|
||||
@InternalApi private[akka] final class UnfoldResourceSourceAsync[T, S](
|
||||
create: () => Future[S],
|
||||
readData: (S) => Future[Option[T]],
|
||||
close: (S) => Future[Done])
|
||||
extends GraphStage[SourceShape[T]] {
|
||||
val out = Outlet[T]("UnfoldResourceSourceAsync.out")
|
||||
override val shape = SourceShape(out)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue