io.pravega.controller.store.task.TaskStoreFactory.java Source code

Java tutorial

Introduction

Here is the source code for io.pravega.controller.store.task.TaskStoreFactory.java

Source

/**
 * Copyright (c) 2017 Dell Inc., or its subsidiaries. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 */
package io.pravega.controller.store.task;

import io.pravega.controller.store.client.StoreClient;
import com.google.common.annotations.VisibleForTesting;
import org.apache.commons.lang.NotImplementedException;
import org.apache.curator.framework.CuratorFramework;

import java.util.concurrent.ScheduledExecutorService;

/**
 * Task store factory.
 */
public class TaskStoreFactory {

    public static TaskMetadataStore createStore(StoreClient storeClient, ScheduledExecutorService executor) {
        switch (storeClient.getType()) {
        case Zookeeper:
            return new ZKTaskMetadataStore((CuratorFramework) storeClient.getClient(), executor);
        case InMemory:
            return new InMemoryTaskMetadataStore(executor);
        default:
            throw new NotImplementedException();
        }
    }

    @VisibleForTesting
    public static TaskMetadataStore createZKStore(final CuratorFramework client,
            final ScheduledExecutorService executor) {
        return new ZKTaskMetadataStore(client, executor);
    }

    @VisibleForTesting
    public static TaskMetadataStore createInMemoryStore(final ScheduledExecutorService executor) {
        return new InMemoryTaskMetadataStore(executor);
    }
}