We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1d270c6 + e93465f commit 685f1b0Copy full SHA for 685f1b0
base/channels.jl
@@ -1,8 +1,8 @@
1
# This file is a part of Julia. License is MIT: http://julialang.org/license
2
3
-abstract AbstractChannel{T}
+abstract AbstractChannel
4
5
-type Channel{T} <: AbstractChannel{T}
+type Channel{T} <: AbstractChannel
6
cond_take::Condition # waiting for data to become available
7
cond_put::Condition # waiting for a writeable slot
8
state::Symbol
base/multi.jl
@@ -465,7 +465,7 @@ end
465
466
const client_refs = WeakKeyDict()
467
468
-type RemoteRef{RemoteStore}
+type RemoteRef{T<:AbstractChannel}
469
where::Int
470
whence::Int
471
id::Int
0 commit comments