This class is deprecated and will be removed in a future version. Use ClockNormalizer (see ./clock_normalizer.ts) instead for better time synchronization.
// ❌ Deprecated - Don't useconst offset = await AkamaiOffset.getClockSkew()// ✅ Use ClockNormalizer insteadimport { ClockNormalizer } from './clock_normalizer'const normalizer = await ClockNormalizer.create()const offset = normalizer.getSkew()const normalizedTime = normalizer.now() Copy
// ❌ Deprecated - Don't useconst offset = await AkamaiOffset.getClockSkew()// ✅ Use ClockNormalizer insteadimport { ClockNormalizer } from './clock_normalizer'const normalizer = await ClockNormalizer.create()const offset = normalizer.getSkew()const normalizedTime = normalizer.now()
Static
Deprecated
This class is deprecated and will be removed in a future version. Use ClockNormalizer (see ./clock_normalizer.ts) instead for better time synchronization.
See
Example