Sha256: 2b5fa4b3cafc01e39cf8fd81cb3069472206f3b0de5977f15b244479bf6d9bf4

Contents?: true

Size: 327 Bytes

Versions: 1

Compression:

Stored size: 327 Bytes

Contents

require 'set'


module Orchestrator

    class Edge
        def initialize(edge_ip, thread)
            @thread = thread
            @ip = edge_ip

            reconnect
        end


        attr_reader :thread


        def exec()

        end


        protected


        def reconnect
            
        end
    end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
orchestrator-1.0.3 lib/orchestrator/remote/edge.rb