"

2013 FRC Java API

"

Uses of Class
com.sun.squawk.io.mailboxes.Mailbox

Packages that use Mailbox
com.sun.squawk Provides classes for low level interactions with the Squawk VM. 
com.sun.squawk.io.mailboxes Provides classes for inter-Isolate communication. 
 

Uses of Mailbox in com.sun.squawk
 

Methods in com.sun.squawk that return Mailbox
static Mailbox VM.lookupMailbox(String name)
           
 

Methods in com.sun.squawk with parameters of type Mailbox
 void Isolate.forgetMailbox(Mailbox mailbox)
          Tell the system to forget about this mailbox.
 void Isolate.recordMailbox(Mailbox mailbox)
          Record this mailbox with the system.
static boolean VM.registerMailbox(String name, Mailbox mailbox)
          Register named mailbox with the system.
static void VM.unregisterMailbox(String name, Mailbox mailbox)
          Unregister named mailbox with the system.
 

Uses of Mailbox in com.sun.squawk.io.mailboxes
 

Methods in com.sun.squawk.io.mailboxes that return Mailbox
static Mailbox Mailbox.create()
          This method creates a private, single-client, unregistered Mailbox.
static Mailbox Mailbox.create(String name, MailboxHandler handler)
          Creates a Mailbox with the given name and registers it with the system.
 Mailbox Mailbox.createSubMailbox()
          This method creates a private, single-client, unregistered Mailbox, owned by the same Isolate as this isolate.
 

Methods in com.sun.squawk.io.mailboxes with parameters of type Mailbox
 MailboxAddress MailboxHandler.handleOpen(Mailbox originalMailbox, MailboxAddress originalAddress, MailboxAddress replyAddress)
          Called when a client looks up a MailboxAddress.
 MailboxAddress SharedMailboxHandler.handleOpen(Mailbox originalMailbox, MailboxAddress originalAddress, MailboxAddress replyAddress)
          The system has created an address to the Mailbox for the client to use, and we will pass that on to the client.
static MailboxAddress MailboxAddress.lookupMailbox(String name, Mailbox replyMailbox)
          This method looks up a MailboxAddress that has been registered with the system, and implicitly opens the connection to the remote Mailbox.
 


"

2013 FRC Java API

"

"
For updated information see the Java FRC site
"