summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mrexodia/wray/transport.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/mrexodia/wray/transport.go')
-rw-r--r--vendor/github.com/mrexodia/wray/transport.go21
1 files changed, 0 insertions, 21 deletions
diff --git a/vendor/github.com/mrexodia/wray/transport.go b/vendor/github.com/mrexodia/wray/transport.go
deleted file mode 100644
index 82f4d4d3..00000000
--- a/vendor/github.com/mrexodia/wray/transport.go
+++ /dev/null
@@ -1,21 +0,0 @@
-package wray
-
-import (
- "errors"
-)
-
-type Transport interface {
- isUsable(string) bool
- connectionType() string
- send(map[string]interface{}) (Response, error)
- setUrl(string)
-}
-
-func SelectTransport(client *FayeClient, transportTypes []string, disabled []string) (Transport, error) {
- for _, transport := range registeredTransports {
- if contains(transport.connectionType(), transportTypes) && transport.isUsable(client.url) {
- return transport, nil
- }
- }
- return nil, errors.New("No usable transports available")
-}