Uses of Class
org.apache.ignite.plugin.extensions.communication.MessageCollectionItemType
-
Packages that use MessageCollectionItemType Package Description org.apache.ignite.internal.direct org.apache.ignite.internal.direct.stream org.apache.ignite.plugin.extensions.communication Contains extendable components for communication. -
-
Uses of MessageCollectionItemType in org.apache.ignite.internal.direct
Methods in org.apache.ignite.internal.direct with parameters of type MessageCollectionItemType Modifier and Type Method Description <C extends Collection<?>>
CDirectMessageReader. readCollection(String name, MessageCollectionItemType itemType)Reads collection.<M extends Map<?,?>>
MDirectMessageReader. readMap(String name, MessageCollectionItemType keyType, MessageCollectionItemType valType, boolean linked)Reads map.<T> T[]DirectMessageReader. readObjectArray(String name, MessageCollectionItemType itemType, Class<T> itemCls)Reads array of objects.<T> booleanDirectMessageWriter. writeCollection(String name, Collection<T> col, MessageCollectionItemType itemType)Writes collection.<K,V>
booleanDirectMessageWriter. writeMap(String name, Map<K,V> map, MessageCollectionItemType keyType, MessageCollectionItemType valType)Writes map.<T> booleanDirectMessageWriter. writeObjectArray(String name, T[] arr, MessageCollectionItemType itemType)Writes array of objects. -
Uses of MessageCollectionItemType in org.apache.ignite.internal.direct.stream
Methods in org.apache.ignite.internal.direct.stream with parameters of type MessageCollectionItemType Modifier and Type Method Description protected ObjectDirectByteBufferStream. read(MessageCollectionItemType type, MessageReader reader)<C extends Collection<?>>
CDirectByteBufferStream. readCollection(MessageCollectionItemType itemType, MessageReader reader)<M extends Map<?,?>>
MDirectByteBufferStream. readMap(MessageCollectionItemType keyType, MessageCollectionItemType valType, boolean linked, MessageReader reader)<T> T[]DirectByteBufferStream. readObjectArray(MessageCollectionItemType itemType, Class<T> itemCls, MessageReader reader)protected voidDirectByteBufferStream. write(MessageCollectionItemType type, Object val, MessageWriter writer)<T> voidDirectByteBufferStream. writeCollection(Collection<T> col, MessageCollectionItemType itemType, MessageWriter writer)<K,V>
voidDirectByteBufferStream. writeMap(Map<K,V> map, MessageCollectionItemType keyType, MessageCollectionItemType valType, MessageWriter writer)<T> voidDirectByteBufferStream. writeObjectArray(T[] arr, MessageCollectionItemType itemType, MessageWriter writer) -
Uses of MessageCollectionItemType in org.apache.ignite.plugin.extensions.communication
Methods in org.apache.ignite.plugin.extensions.communication that return MessageCollectionItemType Modifier and Type Method Description static @Nullable MessageCollectionItemTypeMessageCollectionItemType. fromOrdinal(int ord)Efficiently gets enumerated value from its ordinal.static MessageCollectionItemTypeMessageCollectionItemType. valueOf(String name)Returns the enum constant of this type with the specified name.static MessageCollectionItemType[]MessageCollectionItemType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.ignite.plugin.extensions.communication with parameters of type MessageCollectionItemType Modifier and Type Method Description <C extends Collection<?>>
CMessageReader. readCollection(String name, MessageCollectionItemType itemType)Reads collection.<M extends Map<?,?>>
MMessageReader. readMap(String name, MessageCollectionItemType keyType, MessageCollectionItemType valType, boolean linked)Reads map.<T> T[]MessageReader. readObjectArray(String name, MessageCollectionItemType itemType, Class<T> itemCls)Reads array of objects.<T> booleanMessageWriter. writeCollection(String name, Collection<T> col, MessageCollectionItemType itemType)Writes collection.<K,V>
booleanMessageWriter. writeMap(String name, Map<K,V> map, MessageCollectionItemType keyType, MessageCollectionItemType valType)Writes map.<T> booleanMessageWriter. writeObjectArray(String name, T[] arr, MessageCollectionItemType itemType)Writes array of objects.
-