Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

modified documentation to not use DataConverter incorrectly #867

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/java/com/uber/cadence/worker/Worker.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import com.uber.cadence.client.WorkflowClient;
import com.uber.cadence.common.WorkflowExecutionHistory;
import com.uber.cadence.context.ContextPropagator;
import com.uber.cadence.converter.DataConverter;
import com.uber.cadence.internal.worker.PollerOptions;
import com.uber.cadence.internal.common.InternalUtils;
import com.uber.cadence.internal.metrics.MetricsTag;
import com.uber.cadence.internal.replay.DeciderCache;
Expand Down Expand Up @@ -61,7 +61,7 @@ public final class Worker implements Suspendable {
* @param client client to the Cadence Service endpoint.
* @param taskList task list name worker uses to poll. It uses this name for both decision and
* activity task list polls.
* @param options Options (like {@link DataConverter} override) for configuring worker.
* @param options Options (like {@link PollerOptions} override) for configuring worker.
*/
Worker(
WorkflowClient client,
Expand Down