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

templates.java.nettyserverinterface.txt Maven / Gradle / Ivy

There is a newer version: 0.12
Show newest version
package redis.server.netty;

import redis.netty4.BulkReply;
import redis.netty4.IntegerReply;
import redis.netty4.MultiBulkReply;
import redis.netty4.Reply;
import redis.netty4.StatusReply;

public interface RedisServer {

  {{#commands}}

  /**
   * {{comment}}
   * {{group}}
   *
   {{#arguments}}
   * @param {{name}}
   {{/arguments}}
   * @return {{reply}}
   */
  public {{$return}}{{reply}}{{/return}} {{methodname}}({{#arguments}}{{^skip}}{{^first}}, {{/first}}byte[]{{#multiple}}[]{{/multiple}} {{name}}{{/skip}}{{/arguments}}) throws RedisException;
  {{/commands}}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy