Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,14 @@ public void collect(T element) {
@Override
public void collectWithTimestamp(T element, long timestamp) {
throw new UnsupportedOperationException("Automatic-Timestamp sources cannot emit" +
" elements with a timestamp. See interface ManualTimestampSourceFunction" +
" elements with a timestamp. See interface EventTimeSourceFunction" +
" if you want to manually assign timestamps to elements.");
}

@Override
public void emitWatermark(Watermark mark) {
throw new UnsupportedOperationException("Automatic-Timestamp sources cannot emit" +
" elements with a timestamp. See interface ManualTimestampSourceFunction" +
" elements with a timestamp. See interface EventTimeSourceFunction" +
" if you want to manually assign timestamps to elements.");
}

Expand Down Expand Up @@ -139,14 +139,14 @@ public void collect(T element) {
@Override
public void collectWithTimestamp(T element, long timestamp) {
throw new UnsupportedOperationException("Automatic-Timestamp sources cannot emit" +
" elements with a timestamp. See interface ManualTimestampSourceFunction" +
" elements with a timestamp. See interface EventTimeSourceFunction" +
" if you want to manually assign timestamps to elements.");
}

@Override
public void emitWatermark(Watermark mark) {
throw new UnsupportedOperationException("Automatic-Timestamp sources cannot emit" +
" elements with a timestamp. See interface ManualTimestampSourceFunction" +
" elements with a timestamp. See interface EventTimeSourceFunction" +
" if you want to manually assign timestamps to elements.");
}

Expand Down Expand Up @@ -224,14 +224,14 @@ public void collect(T element) {
@Override
public void collectWithTimestamp(T element, long timestamp) {
throw new UnsupportedOperationException("Automatic-Timestamp sources cannot emit" +
" elements with a timestamp. See interface ManualTimestampSourceFunction" +
" elements with a timestamp. See interface EventTimeSourceFunction" +
" if you want to manually assign timestamps to elements.");
}

@Override
public void emitWatermark(Watermark mark) {
throw new UnsupportedOperationException("Automatic-Timestamp sources cannot emit" +
" elements with a timestamp. See interface ManualTimestampSourceFunction" +
" elements with a timestamp. See interface EventTimeSourceFunction" +
" if you want to manually assign timestamps to elements.");
}

Expand Down