You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Wasn't sure if this would work but it does
import com.onresolve.scriptrunner.runner.rest.common.CustomEndpointDelegate
import groovy.transform.BaseScript
import javax.ws.rs.core.MultivaluedMap
import javax.ws.rs.core.Response
import javax.ws.rs.core.CacheControl
import javax.ws.rs.core.StreamingOutput
import java.io.OutputStream
import java.io.BufferedWriter
import java.io.OutputStreamWriter
@BaseScript CustomEndpointDelegate delegate
streaming_test(httpMethod: "GET") {MultivaluedMap queryParams, String body ->
CacheControl cacheControl = new CacheControl()
cacheControl.setNoCache(true)
cacheControl.setMaxAge(-1)
cacheControl.setMustRevalidate(true)
return Response.ok().cacheControl(cacheControl).entity(new StreamingOutput() {
public void write(OutputStream outputStream) {
BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(outputStream))
for(int i = 0;i<10;i++) {
writer.write("Test ${i}\n")
writer.flush()
sleep(1000)
}
writer.close()
}
}).build()
}