summaryrefslogtreecommitdiffstats
path: root/fnet
diff options
context:
space:
mode:
Diffstat (limited to 'fnet')
-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;
-};
-
-}