UDP support implementation
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / connection / ServerFacade.java
index 108e53aace6716c38e73fe2a9b3f672dde8dcca4..39a6eb7ef3654bf02fdd2a6fed5d10c3d213312b 100644 (file)
@@ -1,18 +1,24 @@
-/**
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
+/*
+ * Copyright (c) 2013 Pantheon Technologies s.r.o. and others. All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
 
+
 package org.opendaylight.openflowjava.protocol.impl.connection;
 
+import org.opendaylight.openflowjava.protocol.api.connection.ThreadConfiguration;
+
 /**
  * @author mirehak
- *
  */
 public interface ServerFacade extends ShutdownProvider, OnlineProvider, Runnable {
 
-    // empty unifying superinterface
+    /**
+     * Sets thread configuration
+     * @param threadConfig desired thread configuration
+     */
+    public void setThreadConfig(ThreadConfiguration threadConfig);
 }