docker / libchan

Like Go channels over the network
Apache License 2.0
2.47k stars 142 forks source link

libchan.Pipe and spdy.Pipe have different return value order #74

Closed stevvooe closed 9 years ago

stevvooe commented 9 years ago

sdpy has (sender, receiver), whereas libchan has (receiver, sender). These should match and should probably follow (receiver, sender), similar to the io package (reader, writer).

dmcgowan commented 9 years ago

Agreed receiver before sender, this was an artifact of a previous design which never got cleaned up. Will have to investigate who might be effected by it.