com.yahoo.elide.async.service.dao.UpdateQuery Maven / Gradle / Ivy
/*
* Copyright 2020, Yahoo Inc.
* Licensed under the Apache License, Version 2.0
* See LICENSE file in project root for terms.
*/
package com.yahoo.elide.async.service.dao;
import com.yahoo.elide.async.models.AsyncApi;
/**
* Function which will be invoked for updating elide async query base implementation.
* @param AsyncQueryBase Type Implementation.
*/
@FunctionalInterface
public interface UpdateQuery {
public void update(T query);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy