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

jvmMain.com.apollographql.apollo.api.internal.Mutator Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
package com.apollographql.apollo.api.internal;

/**
 * Represents an operation that accepts a single input argument, mutate it and returns no result
 *
 * @param  the type of the input to the operation
 */
public interface Mutator {

  /**
   * Performs this operation on the given argument.
   *
   * @param t the input argument
   */
  void accept(T t);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy