Sha256: d83b103871e406fc75facb45f3708016ce463773a99b6d1bd9fe55ed3858eaa5

Contents?: true

Size: 341 Bytes

Versions: 2

Compression:

Stored size: 341 Bytes

Contents

# -*- coding: utf-8 -*-

module Dcmgr
  module VNet
    module Isolators
    
      # This isolator just returns an empty array as friends
      # This means all instances will be isolated from each other
      class DummyIsolator < Isolator
        def determine_friends(me,others)
          []
        end
      end
    
    end
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
wakame-vdc-agents-11.12.0 lib/dcmgr/vnet/isolators/dummy.rb
wakame-vdc-dcmgr-11.12.0 lib/dcmgr/vnet/isolators/dummy.rb