All Downloads are FREE. Search and download functionalities are using the official Maven repository.

info.bitrich.xchangestream.bitfinex.dto.jackson.BitfinexWebSocketUpdateOrderbookDeserializer Maven / Gradle / Ivy

There is a newer version: 5.2.1
Show newest version
package info.bitrich.xchangestream.bitfinex.dto.jackson;

import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.deser.std.StdDeserializer;
import info.bitrich.xchangestream.bitfinex.dto.BitfinexWebSocketUpdateOrderbook;
import java.io.IOException;

public class BitfinexWebSocketUpdateOrderbookDeserializer
    extends StdDeserializer {

  private static final long serialVersionUID = -5932404683677998182L;

  protected BitfinexWebSocketUpdateOrderbookDeserializer(Class vc) {
    super(vc);
  }

  @Override
  public BitfinexWebSocketUpdateOrderbook deserialize(
      JsonParser jsonParser, DeserializationContext deserializationContext)
      throws IOException, JsonProcessingException {
    return null;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy