0001    // Poller.swift
0002    //
0003    // The MIT License (MIT)
0004    //
0005    // Copyright (c) 2015 Zewo
0006    //
0007    // Permission is hereby granted, free of charge, to any person obtaining a copy
0008    // of this software and associated documentation files (the "Software"), to deal
0009    // in the Software without restriction, including without limitation the rights
0010    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
0011    // copies of the Software, and to permit persons to whom the Software is
0012    // furnished to do so, subject to the following conditions:
0013    //
0014    // The above copyright notice and this permission notice shall be included in all
0015    // copies or substantial portions of the Software.
0016    //
0017    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
0018    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
0019    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
0020    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
0021    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
0022    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
0023    // SOFTWARE.
0024    
0025    import CLibvenice
0026    
0027    public typealias FileDescriptor
Poll.swift:54
public func poll(fileDescriptor: FileDescriptor, events: PollEvent, deadline: Deadline = never) -> PollResult {
= Int32 0028 0029 public struct PollEvent
Poll.swift:36
    public static let Read  = PollEvent(rawValue: Int(FDW_IN))
Poll.swift:37
    public static let Write = PollEvent(rawValue: Int(FDW_OUT))
Poll.swift:54
public func poll(fileDescriptor: FileDescriptor, events: PollEvent, deadline: Deadline = never) -> PollResult {
: OptionSetType { 0030 public let rawValue
Poll.swift:33
        self.rawValue = rawValue
Poll.swift:55
    let event = mill_fdwait(fileDescriptor, Int32(events.rawValue), deadline, "pollFileDescriptor")
: Int 0031 0032 public init
Poll.swift:36
    public static let Read  = PollEvent(rawValue: Int(FDW_IN))
Poll.swift:37
    public static let Write = PollEvent(rawValue: Int(FDW_OUT))
(rawValue: Int) { 0033 self.rawValue = rawValue 0034 } 0035 0036 public static let Read = PollEvent(rawValue: Int(FDW_IN)) 0037 public static let Write = PollEvent(rawValue: Int(FDW_OUT)) 0038 } 0039 0040 public struct PollResult
Poll.swift:47
    public static let Timeout = PollResult(rawValue: 0)
Poll.swift:48
    public static let Read    = PollResult(rawValue: Int(FDW_IN))
Poll.swift:49
    public static let Write   = PollResult(rawValue: Int(FDW_OUT))
Poll.swift:50
    public static let Error   = PollResult(rawValue: Int(FDW_ERR))
Poll.swift:54
public func poll(fileDescriptor: FileDescriptor, events: PollEvent, deadline: Deadline = never) -> PollResult {
Poll.swift:56
    return PollResult(rawValue: Int(event))
: OptionSetType { 0041 public let rawValue
Poll.swift:44
        self.rawValue = rawValue
: Int 0042 0043 public init
Poll.swift:47
    public static let Timeout = PollResult(rawValue: 0)
Poll.swift:48
    public static let Read    = PollResult(rawValue: Int(FDW_IN))
Poll.swift:49
    public static let Write   = PollResult(rawValue: Int(FDW_OUT))
Poll.swift:50
    public static let Error   = PollResult(rawValue: Int(FDW_ERR))
Poll.swift:56
    return PollResult(rawValue: Int(event))
(rawValue: Int) { 0044 self.rawValue = rawValue 0045 } 0046 0047 public static let Timeout = PollResult(rawValue: 0) 0048 public static let Read = PollResult(rawValue: Int(FDW_IN)) 0049 public static let Write = PollResult(rawValue: Int(FDW_OUT)) 0050 public static let Error = PollResult(rawValue: Int(FDW_ERR)) 0051 } 0052 0053 /// Polls file descriptor for events 0054 public func poll(fileDescriptor: FileDescriptor, events: PollEvent, deadline: Deadline = never) -> PollResult { 0055 let event = mill_fdwait(fileDescriptor, Int32(events.rawValue), deadline, "pollFileDescriptor") 0056 return PollResult(rawValue: Int(event)) 0057 }