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

io.getstream.core.options.KeepHistory Maven / Gradle / Ivy

There is a newer version: 3.15.0
Show newest version
package io.getstream.core.options;

import io.getstream.core.http.Request;

public final class KeepHistory implements RequestOption {
  private final boolean keepHistory;

  public KeepHistory(io.getstream.core.KeepHistory keepHistory) {
    this.keepHistory = keepHistory.getFlag();
  }

  public boolean getFlag() {
    return keepHistory;
  }

  @Override
  public void apply(Request.Builder builder) {
    builder.addQueryParameter("keep_history", Boolean.toString(keepHistory));
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy