2 Commits 40270d73d0 ... c3e45ee515

Author SHA1 Message Date
  herlanS_ c3e45ee515 send dc message 3 years ago
  herlanS_ 40270d73d0 send dx message 3 years ago

BIN
classes/artifacts/ipphone_bridge_jar/ipphone-bridge.jar


+ 3 - 2
src/main/kotlin/co/id/datacomsolusindo/ipphonebridge/SocketChecker.kt

@@ -1,12 +1,13 @@
 package co.id.datacomsolusindo.ipphonebridge
 
+import org.apache.logging.log4j.LogManager
 import org.springframework.messaging.handler.annotation.DestinationVariable
 import org.springframework.messaging.handler.annotation.MessageMapping
 import org.springframework.messaging.handler.annotation.SendTo
 import org.springframework.stereotype.Controller
 
 @Controller
-class SocketChecker() {
+class SocketChecker {
 
     @MessageMapping("/hi")
     @SendTo("/topic/healthCheck")
@@ -19,7 +20,7 @@ class SocketChecker() {
         }
     }
 
-    fun collectChunk(message: SocketChunkData, id: String) {
+    fun collectChunk(message: SocketChunkData, id: String){
         if (message.totalPart == 1) {
 //                println("one part only with id $id")
             Singletons.responseQue.getOrPut(id) {

+ 0 - 4
src/main/resources/META-INF/MANIFEST.MF

@@ -1,4 +0,0 @@
-Manifest-Version: 1.0
-Main-Class: co.id.datacomsolusindo.ipphonebridge.IpPhoneBridgeApplicatio
- nKt
-