package com.guokr.hebo.command; import com.guokr.hebo.HeboEngine; import com.guokr.hebo.HeboCallback; import com.guokr.hebo.HeboCommand; public class Hdel extends HeboCommand { @Override public String signature() { return "ss"; } @Override public void invoke(HeboEngine engine, String key ,String hkey,HeboCallback callback) { engine.hdel(callback, key, hkey); } }