1package com.bumptech.glide.manager;
2
3/**
4 * An interface for listening to Activity/Fragment lifecycle events.
5 */
6public interface Lifecycle {
7    /**
8     * Adds the given listener to the set of listeners managed by this Lifecycle implementation.
9     */
10    void addListener(LifecycleListener listener);
11}
12