Re: [swift-users] Is URLSession actually working on Linux

2017-10-06 Thread Alex Blewitt via swift-users
> On 5 Oct 2017, at 19:18, Georgios Moschovitis > wrote: > > I am wondering, is there an ETA for 4.0.1 ? I'm not aware of there being an ETA, but according to https://swift.org/download/ last year Swift 3.0 was released on September 13, 2016 and then a

Re: [swift-users] Is URLSession actually working on Linux

2017-10-05 Thread Georgios Moschovitis via swift-users
I am wondering, is there an ETA for 4.0.1 ? -g. > On 5 Oct 2017, at 8:58 PM, Georgios Moschovitis > wrote: > >> There has been a reasonable amount of work put in recently, particularly >> with Data and URLSession. >> >> You can have a look at the list of open

Re: [swift-users] Is URLSession actually working on Linux

2017-10-05 Thread Georgios Moschovitis via swift-users
> There has been a reasonable amount of work put in recently, particularly with > Data and URLSession. > > You can have a look at the list of open issues for Foundation on Linux: > >

Re: [swift-users] Is URLSession actually working on Linux

2017-10-04 Thread Alex Blewitt via swift-users
> On 3 Oct 2017, at 19:15, Geordie Jay via swift-users > wrote: > > 2017-10-03 20:10 GMT+02:00 Georgios Moschovitis via swift-users > >: > I implemented a simple RSS feed aggregator. I used code like... > > let data

Re: [swift-users] Is URLSession actually working on Linux

2017-10-03 Thread Geordie Jay via swift-users
2017-10-03 20:10 GMT+02:00 Georgios Moschovitis via swift-users < swift-users@swift.org>: > I implemented a simple RSS feed aggregator. I used code like... > > let data = try! Data(contentsOf: feedURL) > > or > > let session = URLSession(configuration: URLSessionConfiguration.default) > let task

[swift-users] Is URLSession actually working on Linux

2017-10-03 Thread Georgios Moschovitis via swift-users
I implemented a simple RSS feed aggregator. I used code like... let data = try! Data(contentsOf: feedURL) or let session = URLSession(configuration: URLSessionConfiguration.default) let task = session.dataTask(with: url, completionHandler: completionHandler) task.resume() ...to fetch the data.