Uses of Class
com.google.bitcoin.core.Message

Packages that use Message
com.google.bitcoin.core   
 

Uses of Message in com.google.bitcoin.core
 

Subclasses of Message in com.google.bitcoin.core
 class AddressMessage
           
 class Block
          A block is the foundation of the BitCoin system.
 class GetBlocksMessage
           
 class GetDataMessage
           
 class InventoryMessage
           
 class ListMessage
          Abstract superclass of classes with list based payload, i.e.
 class PeerAddress
          A PeerAddress holds an IP address and port number representing the network location of a peer in the BitCoin P2P network.
 class Ping
           
 class Transaction
          A transaction represents the movement of coins from some addresses to some other addresses.
 class TransactionInput
          A transfer of coins from one address to another creates a transaction in which the outputs can be claimed by the recipient in the input of another transaction.
 class TransactionOutPoint
          This message is a reference or pointer to an output of a different transaction.
 class TransactionOutput
          A TransactionOutput message contains a scriptPubKey that controls who is able to spend its value.
 class UnknownMessage
           
 class VersionAck
          The verack message, sent by a client accepting the version message they received from their peer.
 class VersionMessage
           
 

Methods in com.google.bitcoin.core that return Message
 Message BitcoinSerializer.deserialize(InputStream in)
          Reads a message from the given InputStream and returns it.
 Message NetworkConnection.readMessage()
          Reads a network message from the wire, blocking until the message is fully received.
 

Methods in com.google.bitcoin.core with parameters of type Message
 void BitcoinSerializer.serialize(Message message, OutputStream out)
          Writes message to to the output stream.
 void NetworkConnection.writeMessage(Message message)
          Writes the given message out over the network using the protocol tag.
 



Copyright © 2011. All Rights Reserved.