Package org.redisson.api.listener
Interface ListAddListener
-
- All Superinterfaces:
EventListener
,ObjectListener
public interface ListAddListener extends ObjectListener
Redisson Object Event listener for rpush event published by Redis.Redis notify-keyspace-events setting should contain El letters
- Author:
- Nikita Koksharov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onListAdd(String name)
Invoked on event of adding element to list
-
-
-
Method Detail
-
onListAdd
void onListAdd(String name)
Invoked on event of adding element to list- Parameters:
name
- - name of object
-
-