Skip to content

Commit f1dda5f

Browse files
committed
use the right FQCN for Verticle
1 parent 462bc40 commit f1dda5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core_manual_java.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ <h1 id="writing-verticles">Writing Verticles</h1><br/>
392392
<p>And notice how data you send (and hit enter) is echoed back to you.</p>
393393
<p>Congratulations! You've written your first verticle.</p>
394394
<p>Notice how you didn't have to first compile the <code>.java</code> file to a <code>.class</code> file. Vert.x understands how to run <code>.java</code> files directly - internally doing the compilation on the fly. (It also supports running .class files too if you prefer)</p>
395-
<p>Every Java verticle must extend the class <code>org.vertx.java.deploy.Verticle</code>. You must override the <code>start</code> method - this is called by Vert.x when the verticle is started.</p>
395+
<p>Every Java verticle must extend the class <code>org.vertx.java.platform.Verticle</code>. You must override the <code>start</code> method - this is called by Vert.x when the verticle is started.</p>
396396
<p><em>In the rest of this manual we'll assume the code snippets are running inside a verticle.</em></p>
397397
<h2 id="asynchronous-start">Asynchronous start</h2><br/>
398398
<p>In some cases your Verticle has to do some other stuff asynchronously in its <code>start()</code> method, e.g. start other verticles, and the verticle shouldn't be considered started until those other actions are complete.</p>

0 commit comments

Comments
 (0)