org.apache.flink.state.changelog.AbstractChangelogState Maven / Gradle / Ivy
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.flink.state.changelog;
import org.apache.flink.api.common.typeutils.TypeSerializer;
import org.apache.flink.runtime.state.internal.InternalKvState;
/**
* Base class for changelog state wrappers of state objects.
*
* @param The type of key the state is associated to
* @param The type of the namespace
* @param The type of values kept internally in state without changelog wrapper
* @param Type of originally wrapped state object
*/
abstract class AbstractChangelogState>
implements InternalKvState {
protected final S delegatedState;
AbstractChangelogState(S state) {
this.delegatedState = state;
}
public S getDelegatedState() {
return delegatedState;
}
@Override
public TypeSerializer getKeySerializer() {
return delegatedState.getKeySerializer();
}
@Override
public TypeSerializer getNamespaceSerializer() {
return delegatedState.getNamespaceSerializer();
}
@Override
public TypeSerializer getValueSerializer() {
return delegatedState.getValueSerializer();
}
@Override
public void setCurrentNamespace(N namespace) {
delegatedState.setCurrentNamespace(namespace);
}
@Override
public byte[] getSerializedValue(
byte[] serializedKeyAndNamespace,
TypeSerializer safeKeySerializer,
TypeSerializer safeNamespaceSerializer,
TypeSerializer safeValueSerializer)
throws Exception {
return delegatedState.getSerializedValue(
serializedKeyAndNamespace,
safeKeySerializer,
safeNamespaceSerializer,
safeValueSerializer);
}
@Override
public StateIncrementalVisitor getStateIncrementalVisitor(
int recommendedMaxNumberOfReturnedRecords) {
return delegatedState.getStateIncrementalVisitor(recommendedMaxNumberOfReturnedRecords);
}
}