Merge pull request #516 from bigbluebutton/remove-collector-actor
- remote CollectorActor as we don't use it. Found that sometimes it's s...
This commit is contained in:
commit
23573f528c
@ -5,14 +5,12 @@ import java.util.concurrent.CountDownLatch
|
|||||||
import scala.actors.Actor
|
import scala.actors.Actor
|
||||||
import scala.actors.Actor._
|
import scala.actors.Actor._
|
||||||
|
|
||||||
class BigBlueButtonGateway(outGW: MessageOutGateway, collGW: CollectorGateway) {
|
class BigBlueButtonGateway(outGW: MessageOutGateway) {
|
||||||
|
|
||||||
private val bbbActor = new BigBlueButtonActor(outGW)
|
private val bbbActor = new BigBlueButtonActor(outGW)
|
||||||
bbbActor.start
|
bbbActor.start
|
||||||
|
|
||||||
def accept(msg: InMessage):Unit = {
|
def accept(msg: InMessage):Unit = {
|
||||||
collGW.collectInMessage(msg)
|
|
||||||
|
|
||||||
bbbActor ! msg
|
bbbActor ! msg
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -84,7 +84,6 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
|
|||||||
|
|
||||||
<bean id="bbbGW" class="org.bigbluebutton.core.BigBlueButtonGateway">
|
<bean id="bbbGW" class="org.bigbluebutton.core.BigBlueButtonGateway">
|
||||||
<constructor-arg index="0" ref="outMsgGW"/>
|
<constructor-arg index="0" ref="outMsgGW"/>
|
||||||
<constructor-arg index="1" ref="collectorGW"/>
|
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
<bean id="collectorGW" class="org.bigbluebutton.core.CollectorGateway">
|
<bean id="collectorGW" class="org.bigbluebutton.core.CollectorGateway">
|
||||||
@ -121,7 +120,6 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
|
|||||||
<ref bean="chatRedisPublisher"/>
|
<ref bean="chatRedisPublisher"/>
|
||||||
<ref bean="fsConfService"/>
|
<ref bean="fsConfService"/>
|
||||||
<ref bean="whiteboardEventRedisPublisher"/>
|
<ref bean="whiteboardEventRedisPublisher"/>
|
||||||
<ref bean="collectorGW"/>
|
|
||||||
</set>
|
</set>
|
||||||
</property>
|
</property>
|
||||||
</bean>
|
</bean>
|
||||||
|
Loading…
Reference in New Issue
Block a user