Uses of Class
convex.net.message.Message
Packages that use Message
-
Uses of Message in convex.api
Fields in convex.api with type parameters of type MessageMethod parameters in convex.api with type arguments of type Message -
Uses of Message in convex.net
Methods in convex.net that return types with arguments of type MessageMethods in convex.net with parameters of type MessageModifier and TypeMethodDescriptionvoid
boolean
Connection.sendMessage(Message msg)
Sends a message over this connectionMethod parameters in convex.net with type arguments of type MessageModifier and TypeMethodDescriptionstatic Connection
Connection.connect(InetSocketAddress hostAddress, Consumer<Message> receiveAction, AStore store)
Create a PeerConnection by connecting to a remote addressstatic Connection
Connection.connect(InetSocketAddress hostAddress, Consumer<Message> receiveAction, AStore store, AccountKey trustedPeerKey)
Create a Connection by connecting to a remote addressstatic Connection
Connection.connect(InetSocketAddress hostAddress, Consumer<Message> receiveAction, AStore store, AccountKey trustedPeerKey, int sendBufferSize, int receiveBufferSize)
Create a Connection by connecting to a remote addressstatic Connection
Connection.create(ByteChannel channel, Consumer<Message> receiveAction, AStore store, AccountKey trustedPeerKey)
Create a PeerConnection using an existing channel.static NIOServer
NIOServer.create(Server server, BlockingQueue<Message> receiveQueue)
Creates a new unlaunched NIO serverConstructor parameters in convex.net with type arguments of type Message -
Uses of Message in convex.net.message
Subclasses of Message in convex.net.messageModifier and TypeClassDescriptionclass
Class representing a message to a local Server instanceclass
Message subclass handling return of results via a remote connectionMethods in convex.net.message that return MessageModifier and TypeMethodDescriptionstatic Message
Message.createBelief(SignedData<Belief> sb)
static Message
Message.createChallenge(SignedData<ACell> challenge)
static Message
Message.createData(ACell o)
static Message
Message.createGoodBye(SignedData<ACell> peerKey)
static Message
Message.createResponse(SignedData<ACell> response)
-
Uses of Message in convex.peer
Methods in convex.peer that return types with arguments of type MessageMethods in convex.peer with parameters of type MessageModifier and TypeMethodDescriptionvoid
void
ConnectionManager.processChallenge(Message m, Peer thisPeer)
void
Server.queueMessage(Message m)
Queues a message for processing by this Server.