Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 2554

Show
Ignore:
Timestamp:
09/06/07 23:38:37 (1 year ago)
Author:
jcomellas
Message:

Fix for ticket #564. Added aliases for the AbstractSelector?.select() method in
the EpollSelector?, PollSelector? and SelectSelector? classes.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/io/selector/EpollSelector.d

    r2496 r2554  
    105105    { 
    106106        /** 
     107         * Alias for the select() method as we're not reimplementing it in  
     108         * this class. 
     109         */ 
     110        alias AbstractSelector.select select; 
     111 
     112        /** 
    107113         * Default number of SelectionKey's that will be handled by the 
    108114         * EpollSelector. 
  • trunk/tango/io/selector/PollSelector.d

    r1634 r2554  
    6666    { 
    6767        /** 
     68         * Alias for the select() method as we're not reimplementing it in 
     69         * this class. 
     70         */ 
     71        alias AbstractSelector.select select; 
     72 
     73        /** 
    6874         * Default number of SelectionKey's that will be handled by the 
    6975         * PollSelector. 
  • trunk/tango/io/selector/SelectSelector.d

    r2356 r2554  
    7979public class SelectSelector: AbstractSelector 
    8080{ 
     81    /** 
     82     * Alias for the select() method as we're not reimplementing it in 
     83     * this class. 
     84     */ 
     85    alias AbstractSelector.select select; 
     86 
    8187    uint _size; 
    8288    private SelectionKey[ISelectable.Handle] _keys;