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