ScalingContext.java 2.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

18
package org.apache.shardingsphere.scaling.core.config;
19

20
import org.apache.shardingsphere.scaling.core.execute.engine.ShardingScalingExecuteEngine;
21

22
import lombok.AccessLevel;
23
import lombok.Getter;
24
import lombok.NoArgsConstructor;
25

26 27 28
/**
 * Scaling context.
 */
29
@NoArgsConstructor(access = AccessLevel.PRIVATE)
30
@Getter
31
public final class ScalingContext {
32
    
33
    private static final ScalingContext INSTANCE = new ScalingContext();
34
    
35
    private ServerConfiguration serverConfiguration;
36
    
37 38 39
    private ShardingScalingExecuteEngine taskExecuteEngine;
    
    private ShardingScalingExecuteEngine importerExecuteEngine;
40
    
41 42 43 44 45
    /**
     * Get instance of Sharding-Scaling's context.
     *
     * @return instance of Sharding-Scaling's context.
     */
46 47 48
    public static ScalingContext getInstance() {
        return INSTANCE;
    }
49
    
50
    /**
邱鹿 Lucas 已提交
51
     * Initialize Scaling context.
52
     *
53 54
     * @param serverConfiguration serverConfiguration
     */
55
    public void init(final ServerConfiguration serverConfiguration) {
56
        this.serverConfiguration = serverConfiguration;
57 58
        this.taskExecuteEngine = new ShardingScalingExecuteEngine(serverConfiguration.getWorkerThread());
        this.importerExecuteEngine = new ShardingScalingExecuteEngine(serverConfiguration.getWorkerThread());
59 60
    }
}