
net.openhft.chronicle.set.DummyValueMarshaller Maven / Gradle / Ivy
/*
* Copyright (C) 2015 higherfrequencytrading.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*/
package net.openhft.chronicle.set;
import net.openhft.chronicle.hash.serialization.BytesInterop;
import net.openhft.chronicle.hash.serialization.BytesReader;
import net.openhft.chronicle.hash.serialization.SizeMarshaller;
import net.openhft.lang.io.Bytes;
import static net.openhft.chronicle.set.DummyValue.DUMMY_VALUE;
enum DummyValueMarshaller
implements BytesInterop, BytesReader, SizeMarshaller {
INSTANCE;
@Override
public boolean startsWith(Bytes bytes, DummyValue dummyValue) {
return true;
}
@Override
public long hash(DummyValue dummyValue) {
throw new UnsupportedOperationException();
}
@Override
public DummyValue read(Bytes bytes, long size) {
return DUMMY_VALUE;
}
@Override
public DummyValue read(Bytes bytes, long size, DummyValue toReuse) {
return DUMMY_VALUE;
}
@Override
public long size(DummyValue dummyValue) {
return 0L;
}
@Override
public void write(Bytes bytes, DummyValue dummyValue) {
// do nothing
}
@Override
public int sizeEncodingSize(long size) {
return 0;
}
@Override
public long minEncodableSize() {
return 0L;
}
@Override
public int minSizeEncodingSize() {
return 0;
}
@Override
public int maxSizeEncodingSize() {
return 0;
}
@Override
public void writeSize(Bytes bytes, long size) {
// do nothing
}
@Override
public long readSize(Bytes bytes) {
return 0L;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy