
com.zendesk.maxwell.producer.NoneProducer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maxwell Show documentation
Show all versions of maxwell Show documentation
Maxwell's daemon. Watches mysql, outputs to JSON.
package com.zendesk.maxwell.producer;
import com.zendesk.maxwell.MaxwellContext;
import com.zendesk.maxwell.row.RowMap;
public class NoneProducer extends AbstractProducer {
public NoneProducer(MaxwellContext context) {
super(context);
}
@Override
public void push(RowMap r) throws Exception {
this.context.setPosition(r);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy