package com.framsticks.remote; import com.framsticks.core.ListChange; import com.framsticks.core.Path; /** * @author Piotr Sniegowski */ public interface NodeListener { void onUpgrade(Path path); void onChange(Path path); void onChildChange(Path path, ListChange.Action action); }