com.alachisoft.ncache.serialization.standard.io.surrogates.EOFDotNetSerializationSurrogate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nc-serialization Show documentation
Show all versions of nc-serialization Show documentation
Internal package of Alachisoft.
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.alachisoft.ncache.serialization.standard.io.surrogates;
import com.alachisoft.ncache.serialization.core.io.NCacheObjectInput;
import com.alachisoft.ncache.serialization.core.io.NCacheObjectOutput;
import com.alachisoft.ncache.serialization.core.io.surrogates.*;
/**
* @author Basit Anwer
*/
public class EOFDotNetSerializationSurrogate extends SerializationSurrogateBase implements SerializationSurrogate, BuiltinSerializationSurrogate {
public EOFDotNetSerializationSurrogate() {
super(EOFDotNetSerializationSurrogate.class);
}
/**
* Does not perform any operation
*
* @param input
* @return
* @throws NCacheInstantiationException
* @throws NCacheIOException
*/
public Object readObject(NCacheObjectInput input) throws NCacheInstantiationException, NCacheIOException {
return null;
}
/**
* Does not perform any operation
*
* @param output
* @param graph
* @throws NCacheIOException
*/
public void writeObject(NCacheObjectOutput output, Object graph) throws NCacheIOException {
}
public void skipObject(NCacheObjectInput input) throws NCacheInstantiationException, NCacheIOException {
throw new UnsupportedOperationException("Not supported yet.");
}
}