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

com.urbanairship.connect.client.offsets.OffsetManager Maven / Gradle / Ivy

There is a newer version: 5.4.2
Show newest version
/*
Copyright 2015 Urban Airship and Contributors
*/

package com.urbanairship.connect.client.offsets;

import com.google.common.base.Optional;

/**
 * Interface to manage stream offsets.
 */
public interface OffsetManager {

    /**
     * Gets the last stored offset.
     *
     * @return {@code Optional}
     */
    Optional getLastOffset();

    /**
     * Update the stored offset value.
     *
     * @param offset Long
     */
    void update(String offset);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy