aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTor Brede Vekterli <vekterli@oath.com>2018-08-21 16:20:46 +0200
committerGitHub <noreply@github.com>2018-08-21 16:20:46 +0200
commit3b426b943a6762f21945d5157e746a2ec011421b (patch)
treef3a72acc3c9d9481301d1b3c92ee1493d92396b7
parent33f038afdc0b86729e96919d6b9c2ab0d2fcb16d (diff)
parent2064a32e55f80bdfea68c355a38442c49e79eafc (diff)
Merge pull request #6641 from vespa-engine/havardpe/remove-unused-api
remove no longer used interface
-rw-r--r--fnet/src/vespa/fnet/ext_connectable.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/fnet/src/vespa/fnet/ext_connectable.h b/fnet/src/vespa/fnet/ext_connectable.h
deleted file mode 100644
index 642f3dcfb59..00000000000
--- a/fnet/src/vespa/fnet/ext_connectable.h
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-
-#pragma once
-
-namespace fnet {
-/**
- * Interface implemented by objects that want to perform synchronous
- * connect initiated by an external thread.
- **/
-class ExtConnectable {
-protected:
- virtual ~ExtConnectable() {}
-public:
- virtual void ext_connect() = 0;
-};
-
-}