All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lambdaworks.redis.output.DateOutput Maven / Gradle / Ivy

There is a newer version: 3.43.0
Show newest version
// Copyright (C) 2011 - Will Glozer.  All rights reserved.

package com.lambdaworks.redis.output;

import com.lambdaworks.redis.codec.RedisCodec;
import com.lambdaworks.redis.protocol.CommandOutput;

import java.util.Date;

/**
 * Date output with no milliseconds.
 *
 * @author Will Glozer
 */
public class DateOutput extends CommandOutput {
    public DateOutput(RedisCodec codec) {
        super(codec, null);
    }

    @Override
    public void set(long time) {
        output = new Date(time * 1000);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy