io.mokamint.node.local.AbstractLocalNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of io-mokamint-node-local Show documentation
Show all versions of io-mokamint-node-local Show documentation
This module implements a Mokamint local node, that is, a node that actually works on the local machine where it is executed.
/*
Copyright 2023 Fausto Spoto
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
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.
*/
package io.mokamint.node.local;
import java.security.InvalidKeyException;
import java.security.KeyPair;
import java.security.SignatureException;
import java.util.concurrent.TimeoutException;
import io.hotmoka.annotations.ThreadSafe;
import io.mokamint.application.api.Application;
import io.mokamint.node.api.NodeException;
import io.mokamint.node.local.api.LocalNodeConfig;
import io.mokamint.node.local.internal.LocalNodeImpl;
/**
* A local node of a Mokamint blockchain. This class is meant for extension of the standard node behavior.
*/
@ThreadSafe
public abstract class AbstractLocalNode extends LocalNodeImpl {
/**
* Creates a local node of a Mokamint blockchain, for the given application.
*
* @param config the configuration of the node
* @param keyPair the key pair that the node will use to sign the blocks that it mines
* @param app the application
* @param init if true, creates a genesis block and starts mining on top
* (initial synchronization is consequently skipped)
* @throws InterruptedException if the initialization of the node was interrupted
* @throws AlreadyInitializedException if {@code init} is true but the database of the node
* contains a genesis block already
* @throws SignatureException if the genesis block cannot be signed
* @throws InvalidKeyException if the private key of the node is invalid
* @throws NodeException if the node is misbehaving
* @throws TimeoutException if some operation timed out
*/
public AbstractLocalNode(LocalNodeConfig config, KeyPair keyPair, Application app, boolean init) throws InterruptedException, AlreadyInitializedException, InvalidKeyException, SignatureException, NodeException, TimeoutException {
super(config, keyPair, app, init);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy