File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 33use std:: collections:: VecDeque ;
44use std:: marker:: PhantomData ;
55
6- use timely:: logging:: WorkerIdentifier ;
76use timely:: logging_core:: Logger ;
87use timely:: progress:: frontier:: AntichainRef ;
98use timely:: progress:: { frontier:: Antichain , Timestamp } ;
3231 /// Thing to accept data, merge chains, and talk to the builder.
3332 merger : M ,
3433 /// Logger for size accounting.
35- logger : Option < Logger < DifferentialEvent , WorkerIdentifier > > ,
34+ logger : Option < Logger < DifferentialEvent > > ,
3635 /// Timely operator ID.
3736 operator_id : usize ,
3837 /// Current lower frontier, we sealed up to here.
5251 type Time = M :: Time ;
5352 type Output = M :: Chunk ;
5453
55- fn new ( logger : Option < Logger < DifferentialEvent , WorkerIdentifier > > , operator_id : usize ) -> Self {
54+ fn new ( logger : Option < Logger < DifferentialEvent > > , operator_id : usize ) -> Self {
5655 Self {
5756 logger,
5857 operator_id,
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ pub mod description;
1212pub mod implementations;
1313pub mod wrappers;
1414
15- use timely:: logging:: WorkerIdentifier ;
1615use timely:: logging_core:: Logger ;
1716use timely:: progress:: { Antichain , frontier:: AntichainRef } ;
1817use timely:: progress:: Timestamp ;
@@ -310,7 +309,7 @@ pub trait Batcher {
310309 /// Times at which batches are formed.
311310 type Time : Timestamp ;
312311 /// Allocates a new empty batcher.
313- fn new ( logger : Option < Logger < DifferentialEvent , WorkerIdentifier > > , operator_id : usize ) -> Self ;
312+ fn new ( logger : Option < Logger < DifferentialEvent > > , operator_id : usize ) -> Self ;
314313 /// Adds an unordered container of elements to the batcher.
315314 fn push_container ( & mut self , batch : & mut Self :: Input ) ;
316315 /// Returns all updates not greater or equal to an element of `upper`.
You can’t perform that action at this time.
0 commit comments