Package org.drasyl

Class DrasylNode


  • public abstract class DrasylNode
    extends Object
    Represents a node in the drasyl Overlay Network. Applications that want to run on drasyl must implement this class.

    Example usage:

     {@code
     DrasylNode node = new DrasylNode() {
    • Method Detail

      • onEvent

        public abstract void onEvent​(Event event)
        Sends event to the application and tells it information about the local node, other peers, connections or incoming messages.
        Parameters:
        event - the event
      • setLogLevel

        public static void setLogLevel​(ch.qos.logback.classic.Level level)
        Set log level of all drasyl loggers in org.drasyl package namespace.
        Parameters:
        level -
      • send

        public void send​(CompressedPublicKey recipient,
                         byte[] payload)
        Sends the content of payload to the identity recipient. Throws a MessengerException if the message could not be sent to the recipient or a super peer. Important: Just because no exception was thrown does not automatically mean that the message could be delivered. Delivery confirmations must be implemented by the application.
        Parameters:
        recipient - the recipient of a message
        payload - the payload of a message
      • send

        public void send​(String recipient,
                         String payload)
                  throws DrasylException
        Sends the content of payload to the identity recipient. Throws a MessengerException if the message could not be sent to the recipient or a super peer. Important: Just because no exception was thrown does not automatically mean that the message could be delivered. Delivery confirmations must be implemented by the application.
        Parameters:
        recipient - the recipient of a message
        payload - the payload of a message
        Throws:
        MessengerException - if an error occurs during the processing
        DrasylException
      • send

        public void send​(CompressedPublicKey recipient,
                         String payload)
        Sends the content of payload to the identity recipient. Throws a MessengerException if the message could not be sent to the recipient or a super peer. Important: Just because no exception was thrown does not automatically mean that the message could be delivered. Delivery confirmations must be implemented by the application.
        Parameters:
        recipient - the recipient of a message
        payload - the payload of a message
      • shutdown

        public CompletableFuture<Void> shutdown()
        Shut the Drasyl node down.

        If there is a connection to a Super Peer, our node will deregister from that Super Peer.

        If the local server has been started, it will now be stopped.

        This method does not stop the shared threads. To kill the shared threads, you have to call the irrevocablyTerminate() method.

        Returns:
        this method returns a future, which complements if all shutdown steps have been completed.
      • shutdownFuture

        public CompletableFuture<Void> shutdownFuture()
        This method returns a future, which complements if all shutdown steps have been completed.
        Returns:
        this method returns a future, which complements if all shutdown steps have been
      • start

        public CompletableFuture<Void> start()
        Start the Drasyl node.

        First, the identity of the node is loaded. If none exists, a new one is generated.

        If activated, a local server is started. This allows other nodes to discover our node.

        If a super peer has been configured, a client is started which connects to this super peer. Our node uses the Super Peer to discover and communicate with other nodes.

        Returns:
        this method returns a future, which complements if all components necessary for the operation have been started.
      • getVersion

        public static String getVersion()
        Returns the version of the node. If the version could not be read, null is returned.
      • irrevocablyTerminate

        public static void irrevocablyTerminate()
        This method stops the shared threads (EventLoopGroups), but only if none DrasylNode is using them anymore.

        This operation cannot be undone. After performing this operation, no new DrasylNodes can be created!

      • pipeline

        public Pipeline pipeline()
        Returns the Pipeline to allow users to add own handlers.
        Returns:
        the pipeline