Uses of Class
seda.nbio.SelectItem

Packages that use SelectItem
seda.nbio   
seda.sandStorm.lib.aSocket.nbio   
 

Uses of SelectItem in seda.nbio
 

Methods in seda.nbio that return SelectItem
 SelectItem SelectSet.elementAt(int index)
          Return the SelectItem at the given index.
(package private)  SelectItem SelectSetDevPollImpl.elementAt(int index)
          Return the SelectItem at the given index.
(package private) abstract  SelectItem SelectSetImpl.elementAt(int index)
           
(package private)  SelectItem SelectSetPollImpl.elementAt(int index)
          Return the SelectItem at the given index.
 SelectItem[] SelectSet.getEvents()
          Returns an array of SelectItems for which some events have occurred (that is, that the revents field is nonzero).
(package private)  SelectItem[] SelectSetDevPollImpl.getEvents()
          Returns an array of SelectItems for which some events have occurred (that is, that the revents field is nonzero).
(package private) abstract  SelectItem[] SelectSetImpl.getEvents()
           
(package private)  SelectItem[] SelectSetPollImpl.getEvents()
          Returns an array of SelectItems for which some events have occurred (that is, that the revents field is nonzero).
 SelectItem[] SelectSet.getEvents(short mask)
          Returns an array of SelectItems for which events matching the given event mask have occurred (that is, that the revents field matches the given mask).
(package private)  SelectItem[] SelectSetDevPollImpl.getEvents(short mask)
          Returns an array of SelectItems for which events matching the given event mask have occurred (that is, that the revents field matches the given mask).
(package private) abstract  SelectItem[] SelectSetImpl.getEvents(short mask)
           
(package private)  SelectItem[] SelectSetPollImpl.getEvents(short mask)
          Returns an array of SelectItems for which events matching the given event mask have occurred (that is, that the revents field matches the given mask).
 

Methods in seda.nbio with parameters of type SelectItem
 void SelectSet.add(SelectItem sel)
          Add a SelectItem to this SelectSet.
(package private)  void SelectSetDevPollImpl.add(SelectItem sel)
          Add a SelectItem to this SelectSetDevPollImpl.
(package private) abstract  void SelectSetImpl.add(SelectItem sel)
           
(package private)  void SelectSetPollImpl.add(SelectItem sel)
          Add a SelectItem to this SelectSetPollImpl.
 void SelectSet.add(SelectItem[] selarr)
          Add all of the SelectItems in the given array to the SelectSet.
(package private)  void SelectSetDevPollImpl.add(SelectItem[] selarr)
          Add all of the SelectItems in the given array to the SelectSetDevPollImpl.
(package private) abstract  void SelectSetImpl.add(SelectItem[] selarr)
           
(package private)  void SelectSetPollImpl.add(SelectItem[] selarr)
          Add all of the SelectItems in the given array to the SelectSetPollImpl.
 void SelectSet.remove(SelectItem sel)
          Remove a SelectItem from the SelectSet.
(package private)  void SelectSetDevPollImpl.remove(SelectItem sel)
          Remove a SelectItem from the SelectSetDevPollImpl.
(package private) abstract  void SelectSetImpl.remove(SelectItem sel)
           
(package private)  void SelectSetPollImpl.remove(SelectItem sel)
          Remove a SelectItem from the SelectSetPollImpl.
 void SelectSet.remove(SelectItem[] selarr)
          Remove all of the SelectItems in the given array from the SelectSet.
(package private)  void SelectSetDevPollImpl.remove(SelectItem[] selarr)
          Remove all of the SelectItems in the given array from the SelectSetDevPollImpl.
(package private) abstract  void SelectSetImpl.remove(SelectItem[] selarr)
           
(package private)  void SelectSetPollImpl.remove(SelectItem[] selarr)
          Remove all of the SelectItems in the given array from the SelectSetPollImpl.
 void SelectSet.update(SelectItem sel)
          Update any changed 'events' fields in the given SelectItem.
(package private)  void SelectSetDevPollImpl.update(SelectItem sel)
          Push updated event masks for all SelectItems in this SelectSet to native code.
(package private) abstract  void SelectSetImpl.update(SelectItem sel)
           
(package private)  void SelectSetPollImpl.update(SelectItem sel)
          Update any changed event masks in this SelectItem.
 

Uses of SelectItem in seda.sandStorm.lib.aSocket.nbio
 

Fields in seda.sandStorm.lib.aSocket.nbio declared as SelectItem
 SelectItem SelectQueueElement.item
           
 

Constructors in seda.sandStorm.lib.aSocket.nbio with parameters of type SelectItem
SelectQueueElement(SelectItem item)