Package io.crate.metadata.shard.unassigned

Examples of io.crate.metadata.shard.unassigned.UnassignedShard


            @Nullable
            @Override
            public UnassignedShard apply(@Nullable ShardRouting input) {
                assert input != null;
                if (!input.active()) {
                    return new UnassignedShard(
                        input.shardId(), clusterService,
                        context.isPrimary(input.shardId()),input.state());
                }
                return null;
            }
View Full Code Here

TOP

Related Classes of io.crate.metadata.shard.unassigned.UnassignedShard

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.