/thrift-3.4.0/test/cl/ |
D | implementation.lisp | 1 (in-package #:thrift.test-implementation) 15 (defun thrift.test.thrift-test-implementation:test-void () 18 (defun thrift.test.thrift-test-implementation:test-string (thing) 22 (defun thrift.test.thrift-test-implementation:test-bool (thing) 26 (defun thrift.test.thrift-test-implementation:test-byte (thing) 30 (defun thrift.test.thrift-test-implementation:test-i32 (thing) 34 (defun thrift.test.thrift-test-implementation:test-i64 (thing) 38 (defun thrift.test.thrift-test-implementation:test-double (thing) 42 (defun thrift.test.thrift-test-implementation:test-binary (thing) 46 (defun thrift.test.thrift-test-implementation:test-struct (thing) [all …]
|
/thrift-3.4.0/lib/kotlin/cross-test-client/ |
D | build.gradle.kts | 39 implementation(platform("org.jetbrains.kotlin:kotlin-bom")) in <lambda>() 40 implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") in <lambda>() 42 implementation("com.github.ajalt.clikt:clikt:$cliktVersion") in <lambda>() 43 implementation("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:$kotlinxCoroutinesJdk8Version") in <lambda>() 44 implementation("org.apache.thrift:libthrift:INCLUDED") in <lambda>() 45 implementation("org.slf4j:slf4j-api:$slf4jVersion") in <lambda>() 46 implementation("org.apache.httpcomponents:httpclient:$httpclientVersion") in <lambda>() 47 implementation("org.apache.httpcomponents:httpcore:$httpcoreVersion") in <lambda>() 48 implementation("ch.qos.logback:logback-classic:$logbackVersion") in <lambda>()
|
/thrift-3.4.0/lib/kotlin/cross-test-server/ |
D | build.gradle.kts | 38 implementation(platform("org.jetbrains.kotlin:kotlin-bom")) in <lambda>() 39 implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") in <lambda>() 41 implementation("com.github.ajalt.clikt:clikt:$cliktVersion") in <lambda>() 42 implementation("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:$kotlinxCoroutinesJdk8Version") in <lambda>() 43 implementation("org.apache.thrift:libthrift:INCLUDED") in <lambda>() 44 implementation("org.slf4j:slf4j-api:$slf4jVersion") in <lambda>() 45 implementation("org.apache.httpcomponents:httpcore:$httpcoreVersion") in <lambda>() 46 implementation("ch.qos.logback:logback-classic:$logbackVersion") in <lambda>()
|
/thrift-3.4.0/tutorial/cl/ |
D | tutorial-implementation.lisp | 1 (in-package #:tutorial-implementation) 15 (defun tutorial.calculator-implementation:ping () 18 (defun tutorial.calculator-implementation:add (num1 num2) 22 (defun tutorial.calculator-implementation:calculate (logid work) 34 (shared-implementation::add-log logid result) 40 (defun tutorial.calculator-implementation:zip ()
|
D | Makefile.am | 29 shared-implementation.lisp \ 31 tutorial-implementation.lisp 55 -$(RM) shared-implementation.fasl 56 -$(RM) tutorial-implementation.fasl 61 tutorial-implementation.lisp \ 62 shared-implementation.lisp \
|
D | thrift-tutorial.asd | 16 :components ((:file "shared-implementation") 17 (:file "tutorial-implementation")))
|
D | shared-implementation.lisp | 1 (in-package #:shared-implementation) 17 (defun shared.shared-service-implementation:get-struct (key)
|
/thrift-3.4.0/lib/java/gradle/ |
D | environment.gradle | 63 implementation "org.slf4j:slf4j-api:${slf4jVersion}" 64 implementation "org.apache.httpcomponents:httpclient:${httpclientVersion}" 65 implementation "org.apache.httpcomponents:httpcore:${httpcoreVersion}" 66 implementation "javax.servlet:javax.servlet-api:${servletVersion}" 67 implementation "javax.annotation:javax.annotation-api:${javaxAnnotationVersion}" 68 implementation "org.apache.commons:commons-lang3:${commonsLang3Version}"
|
D | functionalTests.gradle | 38 // 1. defines cross test implementation that includes all test implementation, which in turn 39 // contains all implementation dependencies 41 // 3. the cross test implementation will need to depends on main and test output 45 description "implementation for cross test"
|
/thrift-3.4.0/lib/kotlin/ |
D | build.gradle.kts | 30 implementation(platform("org.jetbrains.kotlin:kotlin-bom")) in <lambda>() 31 implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") in <lambda>() 32 implementation("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.6.1") in <lambda>() 33 implementation("org.apache.thrift:libthrift:INCLUDED") in <lambda>()
|
/thrift-3.4.0/lib/cl/ |
D | README.md | 33 …* Three packages, one for the namespace of the implementation operators, and one each for request … 98 IDL files, as there is no facility to generate them from a service implementation. 109 * tutorial.calculator-implementation 112 This is to separate the request (generated), response (generated) and implementation 115 It is suggested to work in the `tutorial-implementation` package while implementing 121 (in-package :tutorial-implementation) 123 (defun tutorial.calculator-implementation:add (num1 num2) 127 (defun tutorial.calculator-implementation:ping () 130 (defun tutorial.calculator-implementation:zip () 133 (defun tutorial.calculator-implementation:calculate (logid task) [all …]
|
/thrift-3.4.0/lib/java/src/main/java/org/apache/thrift/partial/ |
D | README.md | 5 1. Make it easier to understand the current Java implementation in this folder. 8 …alization. The second part describes components involved in the Java implementation in this folder. 86 …implementation of each such method simply calls the corresponding `read*()` method in `TProtocol.j… 105 …implementation of this interface is `ThriftStructProcessor`. This implementation outputs a `TBase`…
|
/thrift-3.4.0/lib/cpp/src/thrift/transport/ |
D | TVirtualTransport.h | 41 * does not override the TTransport implementation of these methods. (Since 85 * non-virtual implementation function. 106 * Provide a default readAll() implementation that invokes 110 * transport implementation (i.e., not TTransportDefaults) should beware that 111 * this may override any non-default readAll() implementation provided by 113 * the correct parent implementation, if desired.
|
D | TNonblockingSSLServerSocket.h | 40 * @param factory SSL socket factory implementation 49 * @param factory SSL socket factory implementation 61 * @param factory SSL socket factory implementation
|
D | TSSLServerSocket.h | 40 * @param factory SSL socket factory implementation 49 * @param factory SSL socket factory implementation 61 * @param factory SSL socket factory implementation
|
/thrift-3.4.0/lib/java/src/main/java/org/apache/thrift/transport/ |
D | TServerTransport.java | 66 * available: either it should block infinitely in a blocking implementation, either it should 67 * return null in a nonblocking implementation. 77 * Optional method implementation. This signals to the server transport that it should break out
|
/thrift-3.4.0/doc/specs/ |
D | thrift-rpc.md | 34 The information here is _mostly_ based on the Java implementation in the Apache thrift library (ver… 35 0.9.3). Other implementation, however, should behave the same. 95 In the Java implementation (0.9.3) there is different behavior for the synchronous and asynchronous… 97 implementation only (undeclared) exceptions that extend `TException` are send as a `TApplicationExc… 128 The following exception types are defined in the java implementation (0.9.3): 173 Framed transport was introduced to ease the implementation of async processors. An async processor … 175 memory until the message has been processed. In addition, the java implementation merges the incomi…
|
D | thrift.tex | 33 \title{Thrift: Scalable Cross-Language Services Implementation} 44 Facebook to expedite development and implementation of efficient and scalable 53 well as some of the more interesting implementation details. It is not 70 drastically outside the scope of the LAMP framework. In our implementation of 96 did not yet exist, we committed early on to making the Thrift implementation 135 Section 7 discusses implementation details, and Section 8 describes 287 A key design choice in the implementation of Thrift was to decouple the 327 \subsection{Implementation} subsection 329 The transport interface is designed for simple implementation in any 429 protocol. The implementation should never need to frame or compute the [all …]
|
D | thrift-tconfiguration.md | 33 Following the tradition of similar experience across languages in Thrift, any implementation should… 39 # Implementation chapter 61 … optimal way when using TFramedTransport, it is recommended that the implementation SHOULD update … 85 ## I want to contribute an implementation of TConfiguration and I am not sure whether to pick class…
|
/thrift-3.4.0/test/threads/ |
D | ThreadsServer.cpp | 51 // Your implementation goes here in threadOne() 58 // Your implementation goes here in threadTwo() 65 // Your implementation goes here in threadThree() 72 // Your implementation goes here in threadFour()
|
/thrift-3.4.0/lib/go/thrift/ |
D | logger.go | 40 // NopLogger is a Logger implementation that does nothing. 55 // TestLogger is a Logger implementation can be used in test codes.
|
/thrift-3.4.0/lib/java/src/main/java/org/apache/thrift/protocol/ |
D | ShortStack.java | 24 * ShortStack is a short-specific Stack implementation written for the express purpose of very fast 25 * operations on TCompactProtocol's field id stack. This implementation performs at least 10x faster
|
/thrift-3.4.0/tutorial/c_glib/ |
D | c_glib_server.c | 38 /* In the C (GLib) implementation of Thrift, the actual work done by a 99 /* The implementation of TutorialCalculatorHandler follows. */ 106 pointer to the service-interface implementation (the handler object in G_DEFINE_TYPE() 295 Here we provide an implementation for the getStruct method from the 396 /* Register our implementation of SharedServiceHandler's method */ in tutorial_calculator_handler_class_init() 403 /* That ends the implementation of TutorialCalculatorHandler. 451 methods' implementation */ in main()
|
/thrift-3.4.0/lib/php/lib/Server/ |
D | TSSLServerSocket.php | 27 * Socket implementation of a server agent. 81 * Implementation of accept. If not client is accepted in the given time
|
D | TServerSocket.php | 28 * Socket implementation of a server agent. 108 * Implementation of accept. If not client is accepted in the given time
|