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

tonivade.redis.command.IServerContext Maven / Gradle / Ivy

Go to download

Netty implementation of REdis Serialization Protocol, and a simple framework to implement command based protocols

There is a newer version: 0.24.0
Show newest version
/*
 * Copyright (c) 2015, Antonio Gabriel Muñoz Conejo 
 * Distributed under the terms of the MIT License
 */
package tonivade.redis.command;

public interface IServerContext {

    int getPort();

    int getClients();

    ICommand getCommand(String name);

     T getValue(String key);

    void putValue(String key, Object value);

     T removeValue(String key);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy