Akka.IO.InetAddressDnsResolver.InetAddressDnsResolver C# (CSharp) 메소드

InetAddressDnsResolver() 공개 메소드

public InetAddressDnsResolver ( SimpleDnsCache cache, Config config ) : System.Linq
cache SimpleDnsCache
config Akka.Configuration.Config
리턴 System.Linq
        public InetAddressDnsResolver(SimpleDnsCache cache, Config config)
        {
            _cache = cache;
            _positiveTtl = (long) config.GetTimeSpan("positive-ttl").TotalMilliseconds;
            _negativeTtl = (long) config.GetTimeSpan("negative-ttl").TotalMilliseconds;
        }
InetAddressDnsResolver