Skip to content
This repository has been archived by the owner on Jan 20, 2022. It is now read-only.

Commit

Permalink
Merge pull request #478 from twitter/jco/unhide_classes
Browse files Browse the repository at this point in the history
Make HDFSState public
  • Loading branch information
ianoc committed Mar 12, 2014
2 parents 6d66065 + cf95d0f commit 6eb8e7e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import org.slf4j.LoggerFactory
* State implementation that uses an HDFS folder as a crude key-value
* store that tracks the batches currently processed.
*/
private[summingbird] object HDFSState {
object HDFSState {
@transient private val logger = LoggerFactory.getLogger(classOf[HDFSState])

case class Config(
Expand Down Expand Up @@ -91,7 +91,7 @@ private[summingbird] object HDFSState {
}
}

private[summingbird] class HDFSState(config: HDFSState.Config)(implicit batcher: Batcher)
class HDFSState(config: HDFSState.Config)(implicit batcher: Batcher)
extends WaitingState[Interval[Timestamp]] {
import HDFSState._

Expand Down

0 comments on commit 6eb8e7e

Please sign in to comment.