* @deprecated
* @return
*/
public synchronized int setAudienceModus(String colorObj, int userPos){
try {
IConnection current = Red5.getConnectionLocal();
RoomClient currentClient = this.clientListManager.getClientByStreamId(current.getClient().getId());
log.debug("xmlcrm setUserObjectOneFour: "+currentClient.getUsername());
currentClient.setUsercolor(colorObj);
currentClient.setUserpos(userPos);
Long room_id = currentClient.getRoom_id();
//Notify all clients of the same scope (room)
Collection<Set<IConnection>> conCollection = current.getScope().getConnections();
for (Set<IConnection> conset : conCollection) {
for (IConnection conn : conset) {
if (conn != null) {
if (conn instanceof IServiceCapableConnection) {
if (conn.equals(current)){