Skip to content
This repository has been archived by the owner on Jul 17, 2019. It is now read-only.

Commit

Permalink
A few code cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
quinnj committed Oct 13, 2016
1 parent 6e8bf44 commit 9c52c49
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/DataStreams.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@ export Data, DataFrame

module Data

if !isdefined(Core, :String)
typealias String UTF8String
end

abstract StreamType
immutable Field <: StreamType end
immutable Column <: StreamType end
Expand Down Expand Up @@ -87,8 +83,6 @@ transform(sch::Data.Schema, transforms::Dict{String,Function}) = transform(sch,
abstract Source

# Required methods
# size(source)
# size(source, i)
function schema end
function isdone end
"""
Expand All @@ -100,6 +94,8 @@ function streamtype end
function streamfrom end

# Optional method
# size(source)
# size(source, i)
function reference end

# Generic fallbacks
Expand Down Expand Up @@ -130,6 +126,8 @@ function streamtypes end
function streamto! end

# Optional methods
# size(source)
# size(source, i)
function cleanup! end
function close! end

Expand Down

0 comments on commit 9c52c49

Please sign in to comment.