|
61 | 61 | except Exception: # pragma: no cover |
62 | 62 | sideinputer = None |
63 | 63 |
|
64 | | -# Surface the Python Mapper, BatchMapper, MapStreamer, Reducer, SessionReducer, ReduceStreamer, Accumulator, Sinker, |
65 | | -# Sourcer, SourceTransformer, and SideInput classes under the extension submodules for convenient access |
| 64 | +# Surface the Python async servers and data-type classes under the extension submodules for convenient access |
66 | 65 | from ._accumulator_dtypes import Accumulator |
67 | 66 | from ._batchmap_server import BatchMapAsyncServer |
68 | | -from ._batchmapper_dtypes import BatchMapper |
69 | | -from ._map_dtypes import Mapper |
70 | 67 | from ._map_server import MapAsyncServer |
71 | | -from ._mapstream_dtypes import MapStreamer |
72 | 68 | from ._mapstream_server import MapStreamAsyncServer |
73 | 69 | from ._reduce_dtypes import Reducer |
74 | 70 | from ._reducestreamer_dtypes import ReduceStreamer |
75 | 71 | from ._session_reduce_dtypes import SessionReducer |
76 | 72 | from ._sideinput_dtypes import SideInput |
77 | | -from ._sink_dtypes import Sinker |
78 | 73 | from ._sink_server import SinkAsyncServer |
79 | 74 | from ._source_dtypes import Sourcer |
80 | 75 | from ._sourcetransformer_dtypes import SourceTransformer |
81 | 76 |
|
82 | 77 | if mapper is not None: |
83 | | - mapper.Mapper = Mapper |
84 | 78 | mapper.MapAsyncServer = MapAsyncServer |
85 | 79 |
|
86 | 80 | if batchmapper is not None: |
87 | | - batchmapper.BatchMapper = BatchMapper |
88 | 81 | batchmapper.BatchMapAsyncServer = BatchMapAsyncServer |
89 | 82 |
|
90 | 83 | if mapstreamer is not None: |
91 | | - mapstreamer.MapStreamer = MapStreamer |
92 | 84 | mapstreamer.MapStreamAsyncServer = MapStreamAsyncServer |
93 | 85 |
|
94 | 86 | if reducer is not None: |
|
104 | 96 | accumulator.Accumulator = Accumulator |
105 | 97 |
|
106 | 98 | if sinker is not None: |
107 | | - sinker.Sinker = Sinker |
108 | 99 | sinker.SinkAsyncServer = SinkAsyncServer |
109 | 100 |
|
110 | 101 | if sourcer is not None: |
|
0 commit comments