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

com.hubspot.chrome.devtools.client.core.headlessexperimental.NeedsBeginFramesChangedEvent Maven / Gradle / Ivy

package com.hubspot.chrome.devtools.client.core.headlessexperimental;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.hubspot.chrome.devtools.client.core.Event;

/**
 * Issued when the target starts or stops needing BeginFrames.
 */
public final class NeedsBeginFramesChangedEvent extends Event {
  private Boolean needsBeginFrames;

  @JsonCreator
  public NeedsBeginFramesChangedEvent(@JsonProperty("needsBeginFrames") Boolean needsBeginFrames) {
    this.needsBeginFrames = needsBeginFrames;
  }

  public Boolean getNeedsBeginFrames() {
    return needsBeginFrames;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy