001    package railo.runtime.type.scope;
002    
003    import railo.runtime.config.ConfigServer;
004    import railo.runtime.type.Scope;
005    
006    public interface Cluster extends Scope {
007    
008            public void init(ConfigServer configServer);
009    
010            /**
011             * broadcast data on stack 
012             */
013            public void broadcast();
014    
015            public void setEntry(ClusterEntry entry);
016    }