jvmMain.com.apollographql.apollo.api.internal.Mutator Maven / Gradle / Ivy
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 - 2025 Weber Informatics LLC | Privacy Policy