MrZaiko/Polysmee

View on GitHub
app/src/main/java/io/github/polysmee/agora/Command.java

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
package io.github.polysmee.agora;

/**
 * Generic interface for representing the command pattern
 *
 * @param <T>
 * @param <K>
 */
public interface Command<T, K> {
    void execute(T value, K key);
}