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

org.entur.gbfs.SubscriptionUpdateInterceptor Maven / Gradle / Ivy

There is a newer version: 4.0.19
Show newest version
package org.entur.gbfs;

/**
 * An interceptor that can be notified before and after a subscription's update
 */
public interface SubscriptionUpdateInterceptor {
  /**
   * Called before a subscription is updated
   */
  void beforeUpdate();

  /**
   * Called after a subscription was updated
   */
  void afterUpdate();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy