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

com.github.twitch4j.chat.events.roomstate.FollowersOnlyEvent Maven / Gradle / Ivy

package com.github.twitch4j.chat.events.roomstate;

import com.github.twitch4j.common.events.domain.EventChannel;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import lombok.Value;

import java.util.concurrent.TimeUnit;

/**
 * Followers Only State Event
 */
@Value
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class FollowersOnlyEvent extends ChannelStatesEvent {

    /**
     * Time in  seconds
     */
    long time;

	public FollowersOnlyEvent(EventChannel channel, long time, TimeUnit timeUnit) {
		super(channel, time > -1);
		this.time = timeUnit.toSeconds(time);
	}

	public FollowersOnlyEvent(EventChannel channel, long time) {
		super(channel, time > -1);
		this.time = TimeUnit.MINUTES.toSeconds(time);
	}

	public long getTime(TimeUnit timeUnit) {
		return timeUnit.convert(time, TimeUnit.SECONDS);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy