blob: 06f4f8a0bf67085cd48fb57de9893350eb4df74b [file] [log] [blame]
tom1d416c52014-09-29 20:55:24 -07001package org.onlab.onos.store.cluster.impl;
2
3/**
4 * Provides means to find a worker IO loop.
5 */
6public interface WorkerFinder {
7
8 /**
9 * Finds a suitable worker.
10 *
11 * @return available worker
12 */
13 ClusterIOWorker findWorker();
14}