Uses of Class
alexiil.mc.lib.net.ParentNetId
Package | Description |
---|---|
alexiil.mc.lib.net |
LibNetworkStack's base library.
|
alexiil.mc.lib.net.impl |
LibNetworkStack's minecraft-specific library.
|
-
Uses of ParentNetId in alexiil.mc.lib.net
Methods in alexiil.mc.lib.net that return ParentNetId Modifier and Type Method Description ParentNetId
ParentNetId. child(java.lang.String childName)
Returns a newParentNetId
with this as it's child.Methods in alexiil.mc.lib.net with parameters of type ParentNetId Modifier and Type Method Description static <T> NetObjectCache<T>
NetObjectCache. createMappedIdentifier(ParentNetId parent, java.util.function.Function<T,net.minecraft.util.Identifier> nameGetter, java.util.function.Function<net.minecraft.util.Identifier,T> objectGetter)
static <T> NetObjectCache<T>
NetObjectCache. createMappedIdentifier(ParentNetId parent, java.util.function.Function<T,net.minecraft.util.Identifier> nameGetter, java.util.Map<net.minecraft.util.Identifier,T> map)
Constructors in alexiil.mc.lib.net with parameters of type ParentNetId Constructor Description ActiveConnection(ParentNetId rootId)
BufferedConnection(ParentNetId rootId, int defaultDropDelay)
NetIdData(ParentNetId parent, java.lang.String name, int length)
NetIdSignal(ParentNetId parent, java.lang.String name)
NetObjectCache(ParentNetId parent, it.unimi.dsi.fastutil.Hash.Strategy<T> equality, NetObjectCache.IEntrySerialiser<T> serialiser)
ParentNetId(ParentNetId parent, java.lang.String name)
ParentNetIdSingle(ParentNetId parent, java.lang.Class<T> clazz, java.lang.String name, int thisLength)
-
Uses of ParentNetId in alexiil.mc.lib.net.impl
Fields in alexiil.mc.lib.net.impl declared as ParentNetId Modifier and Type Field Description static ParentNetId
McNetworkStack. ROOT
The root parent - everything must use as it's parent (somewhere up the chain) or it can never be written out to a minecraft connection.