X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=openflow-protocol-impl%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fopenflowjava%2Fprotocol%2Fimpl%2Fconnection%2FServerFacade.java;h=4759b657aabc1e90eba4967e9aa2f589143ff416;hb=62506a770072186715da157c11360cbd6adf7ad3;hp=108e53aace6716c38e73fe2a9b3f672dde8dcca4;hpb=d2705d7b11d14d33b7777e4e069001aadcb7c70c;p=openflowjava.git diff --git a/openflow-protocol-impl/src/main/java/org/opendaylight/openflowjava/protocol/impl/connection/ServerFacade.java b/openflow-protocol-impl/src/main/java/org/opendaylight/openflowjava/protocol/impl/connection/ServerFacade.java index 108e53aa..4759b657 100644 --- a/openflow-protocol-impl/src/main/java/org/opendaylight/openflowjava/protocol/impl/connection/ServerFacade.java +++ b/openflow-protocol-impl/src/main/java/org/opendaylight/openflowjava/protocol/impl/connection/ServerFacade.java @@ -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 + */ + void setThreadConfig(ThreadConfiguration threadConfig); }