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

io.kestra.plugin.gcp.services.TimestampService Maven / Gradle / Ivy

package io.kestra.plugin.gcp.services;

import com.google.protobuf.Timestamp;

import java.time.Instant;

public abstract class TimestampService {
    public static Instant of(Timestamp timestamp) {
        return Instant.ofEpochSecond(timestamp.getSeconds(), timestamp.getNanos());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy