本文整理汇总了Java中org.apache.kafka.connect.errors.IllegalWorkerStateException类的典型用法代码示例。如果您正苦于以下问题:Java IllegalWorkerStateException类的具体用法?Java IllegalWorkerStateException怎么用?Java IllegalWorkerStateException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
IllegalWorkerStateException类属于org.apache.kafka.connect.errors包,在下文中一共展示了IllegalWorkerStateException类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: execute
import org.apache.kafka.connect.errors.IllegalWorkerStateException; //导入依赖的package包/类
@Override
public final Iterator<FileMetadata> execute() throws IOException {
if (hasEnded()) {
throw new IllegalWorkerStateException("Policy has ended. Cannot be retried");
}
preCheck();
Iterator<FileMetadata> files = Collections.emptyIterator();
for (FileSystem fs : fileSystems) {
files = concat(files, listFiles(fs));
}
executions.incrementAndGet();
postCheck();
return files;
}
开发者ID:mmolimar,项目名称:kafka-connect-fs,代码行数:18,代码来源:AbstractPolicy.java
示例2: execPolicyAlreadyEnded
import org.apache.kafka.connect.errors.IllegalWorkerStateException; //导入依赖的package包/类
@Test(expected = IllegalWorkerStateException.class)
@Override
public void execPolicyAlreadyEnded() throws IOException {
policy.execute();
assertFalse(policy.hasEnded());
policy.interrupt();
assertTrue(policy.hasEnded());
policy.execute();
}
开发者ID:mmolimar,项目名称:kafka-connect-fs,代码行数:10,代码来源:HdfsFileWatcherPolicyTest.java
示例3: assignment
import org.apache.kafka.connect.errors.IllegalWorkerStateException; //导入依赖的package包/类
@Override
public Set<TopicPartition> assignment() {
if (consumer == null) {
throw new IllegalWorkerStateException("SinkTaskContext may not be used to look up partition assignment until the task is initialized");
}
return consumer.assignment();
}
开发者ID:YMCoding,项目名称:kafka-0.11.0.0-src-with-comment,代码行数:8,代码来源:WorkerSinkTaskContext.java
示例4: pause
import org.apache.kafka.connect.errors.IllegalWorkerStateException; //导入依赖的package包/类
@Override
public void pause(TopicPartition... partitions) {
if (consumer == null) {
throw new IllegalWorkerStateException("SinkTaskContext may not be used to pause consumption until the task is initialized");
}
try {
for (TopicPartition partition : partitions)
pausedPartitions.add(partition);
consumer.pause(Arrays.asList(partitions));
} catch (IllegalStateException e) {
throw new IllegalWorkerStateException("SinkTasks may not pause partitions that are not currently assigned to them.", e);
}
}
开发者ID:YMCoding,项目名称:kafka-0.11.0.0-src-with-comment,代码行数:14,代码来源:WorkerSinkTaskContext.java
示例5: resume
import org.apache.kafka.connect.errors.IllegalWorkerStateException; //导入依赖的package包/类
@Override
public void resume(TopicPartition... partitions) {
if (consumer == null) {
throw new IllegalWorkerStateException("SinkTaskContext may not be used to resume consumption until the task is initialized");
}
try {
for (TopicPartition partition : partitions)
pausedPartitions.remove(partition);
consumer.resume(Arrays.asList(partitions));
} catch (IllegalStateException e) {
throw new IllegalWorkerStateException("SinkTasks may not resume partitions that are not currently assigned to them.", e);
}
}
开发者ID:YMCoding,项目名称:kafka-0.11.0.0-src-with-comment,代码行数:14,代码来源:WorkerSinkTaskContext.java
示例6: execPolicyAlreadyEnded
import org.apache.kafka.connect.errors.IllegalWorkerStateException; //导入依赖的package包/类
@Test(expected = IllegalWorkerStateException.class)
public void execPolicyAlreadyEnded() throws IOException {
policy.execute();
assertTrue(policy.hasEnded());
policy.execute();
}
开发者ID:mmolimar,项目名称:kafka-connect-fs,代码行数:7,代码来源:PolicyTestBase.java
注:本文中的org.apache.kafka.connect.errors.IllegalWorkerStateException类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论