mirror of
https://github.com/wassname/ray.git
synced 2026-07-05 09:42:22 +08:00
[Java] Rename group id and package name. (#7864)
* Initial * Change streaming's * Fix * Fix * Fix org_ray * Fix cpp file name * Fix streaming * Fix * Fix * Fix testlistening * Fix missing sth in python * Fix * Fix * Fix SPI * Fix * Fix complation * Fix * Fix CI * Fix checkstyle Fix checkstyle * Fix streaming tests * Fix streaming CI * Fix streaming checkstyle. * Fix build * Fix bazel dep * Fix * Fix ray checkstyle * Fix streaming checkstyle * Fix bazel checkstyle
This commit is contained in:
@@ -68,7 +68,7 @@ class DataStream(Stream):
|
||||
"""
|
||||
Represents a stream of data which applies a transformation executed by
|
||||
python. It's also a wrapper of java
|
||||
`org.ray.streaming.python.stream.PythonDataStream`
|
||||
`io.ray.streaming.python.stream.PythonDataStream`
|
||||
"""
|
||||
|
||||
def __init__(self, input_stream, j_stream, streaming_context=None):
|
||||
@@ -220,7 +220,7 @@ class DataStream(Stream):
|
||||
|
||||
class KeyDataStream(Stream):
|
||||
"""Represents a DataStream returned by a key-by operation.
|
||||
Wrapper of java org.ray.streaming.python.stream.PythonKeyDataStream
|
||||
Wrapper of java io.ray.streaming.python.stream.PythonKeyDataStream
|
||||
"""
|
||||
|
||||
def __init__(self, input_stream, j_stream):
|
||||
@@ -254,7 +254,7 @@ class KeyDataStream(Stream):
|
||||
|
||||
class StreamSource(DataStream):
|
||||
"""Represents a source of the DataStream.
|
||||
Wrapper of java org.ray.streaming.python.stream.PythonStreamSource
|
||||
Wrapper of java io.ray.streaming.python.stream.PythonStreamSource
|
||||
"""
|
||||
|
||||
def __init__(self, j_stream, streaming_context, source_func):
|
||||
@@ -277,7 +277,7 @@ class StreamSource(DataStream):
|
||||
|
||||
class StreamSink(Stream):
|
||||
"""Represents a sink of the DataStream.
|
||||
Wrapper of java org.ray.streaming.python.stream.PythonStreamSink
|
||||
Wrapper of java io.ray.streaming.python.stream.PythonStreamSink
|
||||
"""
|
||||
|
||||
def __init__(self, input_stream, j_stream, func):
|
||||
|
||||
Reference in New Issue
Block a user