Created
November 6, 2022 15:36
-
-
Save marttp/1113f57a63fe8f9e64b65fa72e250059 to your computer and use it in GitHub Desktop.
Backend Service for RSocket base
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package dev.tpcoder.location | |
import org.slf4j.LoggerFactory | |
import org.springframework.messaging.handler.annotation.* | |
import org.springframework.stereotype.Controller | |
import reactor.core.publisher.Flux | |
import java.time.Duration | |
@Controller | |
class LocationController { | |
private val logger = LoggerFactory.getLogger(LocationController::class.java) | |
@MessageMapping(value = ["locations.{driver}"]) | |
fun mockLocation(@DestinationVariable driver: String): Flux<Location> { | |
logger.info("Reach RSocket! with driverId:$driver") | |
return Flux.interval(Duration.ofSeconds(1)).take(5) | |
.map { randomGeoPoint() } | |
} | |
@MessageMapping("collectLocation") | |
fun collectLocation(@Payload location: Location) { | |
logger.info("New location: $location") | |
} | |
data class Location(val latitude: Double, val longitude: Double) | |
fun randomGeoPoint(): Location { | |
val latitude = Math.random() * 180.0 - 90.0 | |
val longitude = Math.random() * 360.0 - 180.0 | |
return Location(longitude, latitude) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment