mirror of
https://github.com/wassname/ray.git
synced 2026-07-18 12:40:56 +08:00
[Streaming] Streaming data transfer supports cross language. (#7961)
* add init parameters for java * fix bug * cython * fix compile * fix test_direct_tranfer * comment * ChannelCreationParameter * fix comment * builder * lint and fix tests * fix single process test * fix checkstyle and lint * checkstyle * lint python Co-authored-by: wanxing <wanxing@B-458DMD6M-1753.local>
This commit is contained in:
@@ -78,11 +78,13 @@ class DataReader {
|
||||
/// \param channel_seq_ids
|
||||
/// \param msg_ids
|
||||
/// \param timer_interval
|
||||
void Init(const std::vector<ObjectID> &input_ids, const std::vector<ActorID> &actor_ids,
|
||||
void Init(const std::vector<ObjectID> &input_ids,
|
||||
const std::vector<ChannelCreationParameter> &init_params,
|
||||
const std::vector<uint64_t> &channel_seq_ids,
|
||||
const std::vector<uint64_t> &msg_ids, int64_t timer_interval);
|
||||
|
||||
void Init(const std::vector<ObjectID> &input_ids, const std::vector<ActorID> &actor_ids,
|
||||
void Init(const std::vector<ObjectID> &input_ids,
|
||||
const std::vector<ChannelCreationParameter> &init_params,
|
||||
int64_t timer_interval);
|
||||
|
||||
/// Get latest message from input queues.
|
||||
|
||||
Reference in New Issue
Block a user