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

info.bitrich.xchangestream.bitget.config.converter.InstantToTimestampSecondsConverter Maven / Gradle / Ivy

The newest version!
package info.bitrich.xchangestream.bitget.config.converter;

import com.fasterxml.jackson.databind.util.StdConverter;
import java.time.Instant;

/** Converts {@code Instant} to timestamp in seconds */
public class InstantToTimestampSecondsConverter extends StdConverter {

  @Override
  public Long convert(Instant value) {
    return value.getEpochSecond();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy