summaryrefslogtreecommitdiff
path: root/src/main/java/net/cshift/transit/network/INode.java
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2023-11-14 17:09:23 -0500
committerKyle Gunger <kgunger12@gmail.com>2023-11-14 17:09:23 -0500
commitd1680864edfbc7cec0e6decf1e3a2b30f120aa0e (patch)
treeb47154132e9f3212cc8ed4457e5d4dafee6f1124 /src/main/java/net/cshift/transit/network/INode.java
parent80fe25bcb811508a5fe826c37513a8a63239cb55 (diff)
Update to 1.20.2
Diffstat (limited to 'src/main/java/net/cshift/transit/network/INode.java')
-rw-r--r--src/main/java/net/cshift/transit/network/INode.java70
1 files changed, 0 insertions, 70 deletions
diff --git a/src/main/java/net/cshift/transit/network/INode.java b/src/main/java/net/cshift/transit/network/INode.java
deleted file mode 100644
index 7cbb1cc..0000000
--- a/src/main/java/net/cshift/transit/network/INode.java
+++ /dev/null
@@ -1,70 +0,0 @@
-package net.cshift.transit.network;
-
-import net.cshift.transit.network.packet.*;
-
-/**
- * @author Kyle Gunger
- * @apiNote A node inside or outside a system.
- */
-public interface INode
-{
- /** Returns a pool manifest for the INode
- *
- */
- public PoolManifest getManifest();
-
- /** Get the system managing the node or {@code null} if there isn't one
- *
- */
- public ISystem getSystem();
-
-
-
- // ###############
- // # Connections #
- // ###############
-
- /** Call this function to establish a connection with a node.
- *
- * @param <T> The type of connection being asked for
- * @param poolID The ID of the pool the channel will interface with (see PoolManifest)
- * @param asker The asking node
- * @return A channel if the node accepts the request, {@code null} otherwise
- */
- public <T> Channel<T> connect(int poolID, INode asker);
-
- /** Accept a packet from a channel (or not).
- *
- * @apiNote Do not call this function, use Channel.send(packet) instead.
- * @param <T> The type of the packet and channel
- * @param packet The packet to be vetted
- * @param channel The channel which the packet is coming through
- * @return The overflow data if the packet is only partially accepted. {@code null} otherwise.
- */
- public <T> IStaticPacket<T> accept(IStaticPacket<T> packet, Channel<T> channel);
-
- /** Pressure
- *
- * @apiNote Do not call this function, use Channel.pressure() instead.
- * @param channel The channel asking for the pressure
- * @return A Number representing the pressure from the channel (in base group units).
- */
- public <T> Number getPressure(Channel<T> channel);
-
- /** Transfer rate
- *
- * @apiNote Do not call this function, use Channel.rate() instead.
- * @param channel The channel asking for the transfer rate
- * @return A Number representing the transfer rate from the channel (in base group units per tick).
- */
- public <T> Number getRate(Channel<T> channel);
-
- /** Called when a channel is terminated
- *
- * @apiNote Do not call this function, use Channel.terminate() instead.
- * @param <T> The type of the channel
- * @param channel The channel being terminated
- */
- public <T> void onTerminate(Channel<T> channel);
-
-}