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.
1 parent 6fa0f6e commit 04f3d15Copy full SHA for 04f3d15
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
@@ -460,7 +460,7 @@ end
460
461
const client_refs = WeakKeyDict()
462
463
-type RemoteRef{RemoteStore}
+type RemoteRef{T<:AbstractChannel}
464
where::Int
465
whence::Int
466
id::Int
0 commit comments