All Downloads are FREE. Search and download functionalities are using the official Maven repository.

akka.dispatch.AbstractBoundedNodeQueue.scala Maven / Gradle / Ivy

There is a newer version: 2.2.6.3
Show newest version
/**
 * Copyright (C) 2009-2017 Lightbend Inc. 
 */

package akka.dispatch

import java.util.ArrayDeque

class AbstractBoundedNodeQueue[T](capacity: Int)
  extends ArrayDeque[T](capacity) {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy