Package org.apache.cassandra.concurrent

Examples of org.apache.cassandra.concurrent.IStage


        return ( endPoints_.contains(ep) );
    }
       
    private static void enqueueRunnable(String stageName, Runnable runnable){
       
        IStage stage = StageManager.getStage(stageName);  
       
        if ( stage != null )
        {
            logger_.info("Running on stage " + stage.getName());
            stage.execute(runnable);
        }
        else
        {
            logger_.info("Running on default stage - beware");
            messageSerializerExecutor_.execute(runnable);
View Full Code Here

TOP

Related Classes of org.apache.cassandra.concurrent.IStage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.