Package com.volantis.shared.time

Examples of com.volantis.shared.time.Period.inSeconds()


               
                // According to HTTp specification we treat "never expires" as "expires in approx. 1 year.
                // See http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.21
                final long ttl = ((Period.INDEFINITELY.equals(timeToLive))) ?
                        365 * 24 * 60 * 60 :
                        timeToLive.inSeconds() + SAFETY_THRESHOLD_FOR_MAP_ITEMS;

                mediaAgent.ensureMinTimeToLive(ttl);
            }
        }
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.