public void insert(final String key, final String value) throws Exception {
execute(new Command(){
public Void execute(final Keyspace ks) throws Exception {
ks.insert(key, createColumnPath(COLUMN_NAME), bytes(value));
return null;
}
});
}
Der Körper von new Command() sieht aus wie eine Inline-Methode?
Wie nennt man das, ich möchte das genau verstehen.