org.red5.server.net.rtmp.event.CachedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ant-media-server-common Show documentation
Show all versions of ant-media-server-common Show documentation
Classes common for multiple Ant Media projects
/*
* RED5 Open Source Media Server - https://github.com/Red5/
*
* Copyright 2006-2016 by respective authors (see below). All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.red5.server.net.rtmp.event;
import org.apache.mina.core.buffer.IoBuffer;
import org.red5.server.api.stream.IStreamPacket;
/**
* Provides a means for storage of RTMP events.
*
* @author Paul Gregoire ([email protected])
*/
public class CachedEvent implements IStreamPacket {
/**
* Event timestamp
*/
private int timestamp;
/**
* Time at which the event entered the server
*/
private long receivedTime;
private byte dataType;
private IoBuffer data;
/**
* @return the timestamp
*/
public int getTimestamp() {
return timestamp;
}
/**
* @param timestamp
* the timestamp to set
*/
public void setTimestamp(int timestamp) {
this.timestamp = timestamp;
}
/**
* @return the receivedTime
*/
public long getReceivedTime() {
return receivedTime;
}
/**
* @param receivedTime
* the receivedTime to set
*/
public void setReceivedTime(long receivedTime) {
this.receivedTime = receivedTime;
}
/**
* @return the dataType
*/
public byte getDataType() {
return dataType;
}
/**
* @param dataType
* the dataType to set
*/
public void setDataType(byte dataType) {
this.dataType = dataType;
}
/**
* @return the data
*/
public IoBuffer getData() {
return data;
}
/**
* @param data
* the data to set
*/
public void setData(IoBuffer data) {
this.data = data;
}
/* (non-Javadoc)
* @see java.lang.Object#hashCode()
*/
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + dataType;
result = prime * result + timestamp;
return result;
}
/* (non-Javadoc)
* @see java.lang.Object#equals(java.lang.Object)
*/
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
CachedEvent other = (CachedEvent) obj;
if (dataType != other.dataType)
return false;
if (timestamp != other.timestamp)
return false;
return true;
}
}